We are constantly trying to improve PHP Freaks and these forums, so feel free to go to the PHPFreaks Comments/Suggestions board and point out anything you'd like to see different!
0 Members and 1 Guest are viewing this topic.
I basically need to update some things in the table every 10 seconds basically.
"War does not determine who is right... Only who is dead" - Unknown
you could use jQuery AJAX to load a page with the relevant information into the table every ten seconds.
function updateTable() { $.load('update.php');}setInterval( "updateTable()", 10000 );
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"><?script>
regardless. If no1 is viewing the site they dont need to be updated every ten seconds.