that is the question.
I have a web site that starts with a login screen. After the user enters his information, the form triggers a validation routine, which in turn launches another page. Here's what I'm trying to accomplish:
if ($EnteredPw == $StoredPw)
{
Display the user's information;
Pause for 5 seconds;
Clear the screen;
Launch the next page;
}
I have tried the "sleep()" and "usleep()" functions and they pause at the beginning of the page, instead of the end where I want it to be. How could something so simple be so much trouble? 😕