
Happy New Year 2013 simple Count Down script in php<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ $day = 1; $month = 1; $year = 2013; //change for next year $end = mktime(0,0,0,$month,$day,$year); $today= mktime(date("G"),date("i"), date("s"),date("m"),date("d"),date("Y")); $days=($end-$today)/86400; if ($days>0) { $r1 = explode('.',$days); $hours=24*($days-$r1[0]); $r2 =...