PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
if ( $_POST['exploring'] > 0 )
{
for ($i=0;$i < $_POST['exploring']; $i++)
{
print 'you have explored an acre of land.<br>';
flush();
sleep(1);
}
}
anybody know how come this wont show "you have explored an ancre of land" then pause for a second and show it again? or know any other ways to do this with just php.