build in php timeout or pause function
Posted: Tue May 30, 2006 8:54 pm
does php have a built in timeout or pause function?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
if ( $_POST['exploring'] > 0 )
{
for ($i=0;$i < $_POST['exploring']; $i++)
{
print 'you have explored an acre of land.<br>';
flush();
sleep(1);
}
}