How do I alter the date() function to add an hour to the hour of the day?
$Date = date("D, Y-m-d, h:ia");
The reason I want to the do this of course is because the host is in a different timezone. This date will only be read from the admin side so it's only important that it is in MST and nothing else. I thought doing something like this would work:
$Date = date("D, Y-m-d, h+1:ia");
But it didn't.
Thx