I i have created this php countdown script but im unsure how to get it into the london timezone because it is based on the PHP servers current timezone. For example it changes the day even when its only about 9:00PM in London.
PHP Code:<?php
//A: RECORDS TODAY'S Date And Time
$today = time();
//B: RECORDS Date And Time OF YOUR EVENT
$event = mktime(0,0,0,02,15,2009);
//C: COMPUTES THE DAYS UNTIL THE EVENT.
$countdown = round(($event - $today)/86400);
//D: DISPLAYS COUNTDOWN UNTIL EVENT
echo "$countdown days until New York trip";
?>



Reply With Quote

Bookmarks