i have a php script to display the uk time on my site but it is 1 hour behind how do...

HELP

New member
...i fix this.? (daylight savings)
i have this script
<?php
date_default_timezone_set('GMT');
$today = date("j F, Y, g:i a T");
echo $today;
?>
 
Back
Top