Hi, php xperts!
i need to make a table in php3, that reloads it's information every 5 min. I don't know how to obtain the current cloak time to make it reload. Anyone could help me, please?.
Lots of thanx.
Derty.
current time = time()
I take it you have a page that displays a table and you want to refresh that page every 5 minutes?
In that case,use the meta-refresh statements in HTML. That will auto-refresh the page every X seconds.
Search the forum for more info.
vincent definitely is correct.
you could do something like this:
<head> <meta HTTP-EQUIV="refresh" CONTENT="360; URL=http://www.domain.com/refresh_content.php?user_content=$user_content"> </head>
this would refresh every five minutes sending $user_content (perhaps stored in a session variable) to the specified script.