in my php page i have:
<?php
setcookie("game", "GOW2", time()+3);
echo $_COOKIE["game"]."</br>";
echo "<a href=\"/mypro/mypro2.php/\">Refresh</a></br>";
?>
now i want at page load or when user clicks on 'Refresh' the following functionality
the timer should get reset and get displayed (as a countdown) and this countdown goes till it reaches 0 and stops.
is this can be done??