Awhile ago I posted this javascript here that was a count up timer. Many people said if you can do it in PHP why not? So, I wrote the PHP functionality to do the same thing:
<?
// enter start date below like this: "January 2, 2001"
$start = "January 29, 2002";
// enter string of what this start date is.
$text = "have passed since I had a fulltime job.";
//————————–
$now = strtotime ("now");
$then = strtotime ("$start");
$difference = $now – $then ;
$num = $difference/86400;
$days = intval($num);
$num2 = ($num – $days)*24;
$hours = intval($num2);
$num3 = ($num2 – $hours)*60;
$mins = intval($num3);
$num4 = ($num3 – $mins)*60;
$secs = intval($num4);
?>
<p>
<? echo $days ?> days,
<? echo $hours ?> hours,
<? echo $mins ?> minutes,
<? echo $secs ?> seconds
<? echo $text ?>
</p>
copy and paste the above in your doc – you only need to change the "start" time and text line (noted in red)
Or you can download it here – just follow the instructions in the file