Good morning!
What I am trying to do is: display some text, wait 3 seconds (so the person can read it) and redirect that person to a different web page.
I can get it to either:
1 - Display the text or
2 - Sleep(3) and redirect them to the specific web page.
But I cannot get it to do both.
Can somebody please point me in the right direction?
Thank you in advance
<?php
echo "Your username and password do not match our records";
sleep(3);
header("Location: movie_registration.php");
?>