i live in GMT time, however my server is not.
The majority of my users are GMT, how can i correct a time?
Basically i want to add or subtract x number of hours from the date value?!
if the date value is stored in the database as datetime, this is what i do $display_date = row['updated_date']; $display_date = strtotime($display_date); // adding 10.5 hours [in seconds] $display_date = $display_date + 37800; $display_date = Date("d F, Y h:i:s A",$display_date);
reg kevin