Hi,
When you enter a certain page of mine, I have set it to redirect to another page within some time.
// In the head section:
<?php
$time = rand(5,8);
print "<meta http-equiv=\"refresh\" content=\"$time;url=http://some-adress.com\">";
?>
// In the body section:
<?php print "<p>Time until redirect: $time seconds</p>"; ?>
How do I do, so that the time displayed counts down?