Working on a mod where a user inputs a datetime in this format "11/28/2012 11:34 am".
I am then using strtotime to convert it to a timestamp and saving it to my database.
I am then displaying it to the user in my template using the following date(DateTime, 'D M jS g:i A').
The problem is users who are not in the same timezone as the user who created the event do not get the correct time updated to reflect their timezone.
I have access to both timezone offset's of the user posting and the user viewing.
MY question is how should I compensate for timezone differences?