Hello. Is there anyway to refresh a PHP code every 10 seconds? I attempted this with JavaScript, but it did not work. If you have any ideas, please help! Thanks.
leadegroot
3:42 am on Aug 23, 2009 (gmt 0)
PHP is run server side, so no. One simple way to refresh a page is to use a Meta Refresh, eg:
<meta http-equiv="refresh" content="5">
MartinWeb
3:57 am on Aug 23, 2009 (gmt 0)
Yes, but I am trying to make it non user visible. Thank you though. Is there any other way?