Hi, I have the code:
<?
$birth_time = "November 27, 1983 11:02am";
$birth_timestamp = strtotime ($birth_time);
print "Chris, you are ";
Print number_format (time() - $birth_timestamp);
print " seconds old!";
?>
To print how many seconds old i am, how can i get the code to refresh the number every second? and print it?
Thanks