Hi,
I have a update.php page need to be updated automatically when the data was updated on server side.
How can the update.php page can keep almost live updated data of mysql?
Is there any socket connection to make it faster?
Thanks
well everytime the update.php page is loaded it should load the new data
how can it be loaded for every 10 second in php?
Have the browser reload the page every ten seconds.
<meta http-equiv="refresh" content="10;url=update.php">
Do I just add it?