this is webapp/ it must retrieve all "new" data from DB. ex> there was added new data in DB/ so this WebApp must show this data immediately without refreshing all page/ it's kind of live update! :)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Since Web App can only request the data from server and get the response. You can use javascript setInterval() method to request your db every few seconds using ajax . If there is new data in db you get that data in response of ajax request in append that data on your DOM.. FOR Ex.
|
|||
|
|
