I currently have this code to show when my page was last modified in Greenwich Mean Time (GMT) but the clocks in the UK went forward one hour tonight to British Summer Time (BST).
This code I have is set to GMT so is there anyway of putting it +1 hour? Thanks.
This code I have is set to GMT so is there anyway of putting it +1 hour? Thanks.
PHP:
<? $last_modified = filemtime("index.php");
print("Last Updated: ");
print(gmdate("l, d F, Y H:i", $last_modified));?>








