Hello!
How do I please add 5 hours to this? :
$date=date("l dS of F Y");
The code which you have shown doesn't specify any time at all, and the date function will return the current time. Maybe what you need is
$date = date("l dS of F Y", strtotime("+5 hours"));
Thanks for the help Shrike