View file countdown/index.php

File size: 1.06Kb
<?
//index.php 
#POGLEJ.NET script			#
#Author: Lukaslo			#
#Email: scripts@poglej.net		#
#Copyright 2006 scripts on poglej.net	#
#Please send us a mail with your opinion#
#send your opinions on scripts@poglej.net#
#########################################



//set your year, month, daym hour, minute, second you want to cuntdown to, Change the numbers beetwen " and "
$year="1988";
$month="6";
$day="21";
$hour="12";
$minute="27";
$second="10";

//set what is going to happen than
$event="My birthday";

//don't change anything below unless you know what you are doing

$time=mktime($hour, $minute, $second, $month, $day, $year);

$timecurrent=date('U');
$cuntdowntime=$time-$timecurrent;
$cuntdownminutes=$cuntdowntime/60;
$cuntdownhours=$cuntdowntime/3600;
$cuntdowndays=$cuntdownhours/24;
$cuntdownmonths=$cuntdowndays/30;
$cuntdownyears=$cuntdowndays/365;

echo "Time left till $event<br> $cuntdowntime seconds<br> $cuntdownminutes minutes<br> $cuntdownhours hours<br> $cuntdowndays days<br> $cuntdownmonths months <br> $cuntdownyears years ";
?>