Hello,
I want to do one thing and after few seconds another. Is it possible with PHP?
For example:
<?php
// Instantly after page is loaded
echo 'Hello!';
// And after some time (for example, 15 seconds)
echo 'What is your name?';
?>
How to do this?
Thank you.