I've got this code which shows the date and time the page was last updated on, but I'm having some problems. The time shown is 6 hours behind the time I need (GMT). Here is the code below;
For a preview, visit http://www.korntv.co.uk/test.php
Does anyone know how to fix this or know a better code? Thanks.
PHP:
<?
$last_modified = filemtime("test.php");
print("Last Updated ");
print(date("l, d F, Y H:i", $last_modified));
?> GMT
Does anyone know how to fix this or know a better code? Thanks.





