I've been scratching my head over this one, i have set this script up to tell me the current time however it tells me the current time is: 11:49:25 when it is in fact right now only 17:15:25
// set the default timezone to use. Available since PHP 5.1
date_default_timezone_set('Europe/London');
// Prints something like: Monday 8th of August 2005 03:12:46 PM
echo date('l jS \of F Y h:i:s A');