Countdown
Script: |
<?
// Change the Dates to meet your needs
$day = 9; // Day of the countdown
$month = 5; // Month of the countdown
$year = 2001; // Year of the
countdown
print ("There are " . (int)((mktime (0,0,0,$month,$day,$year)
- time(void))/86400) . " days between today & May 9,
2001");
?>
|
|