I been searching around for a simple code but yet I don't found one that is working for me. I tried using setInterval but turn out the code didn't do well.
<?php switch(n){ case 1: //do this; //then go to next page after this seconds; } ?>
I tried to put javascript into the switch..case,
echo "<script type='text/javascript'>setInterval(location.href = 'goHere.php', 3000);
</script>"
it direct me into the next page without counting down. Any solutions?