I'm trying to print something, wait 5 seconds and move to another page. I'm using the sleep function but for some reason nothing is printed and looks like it skips the print part.
It looks like this:
<?php
echo "Thank you!";
sleep(5);
?>
<script type="text/javascript"> window.location = '?a=home'; </script>