If i have, for example, a marquee that displays time when i push a button,like this:
if($_POST['time'])
echo "<marquee direction=right behavior=alternate scrolldelay=500 scrollamount=30>".date('d-m-Y').' GMT'.date('P').' '.date('H:i:s')."</marquee>";
,it will display the time at the moment that i pushed the button. How could i make it to display the time continously?
Cheers