Hi there ! I wish to display in my Flash File (don't worry about Flash, I know how to handle PHP results and send them to Flash !) which is read all throughout the world, the Full Date and Time of my Home. My Server is in California, I am living in Quebec (three hours of difference) and my File could be read by friends in Japan or Indi or South Africa. Displaying the Date and Time of my Home will say to my friends, for example : "Don't phone me, I'm sleeping" !!! He he he... I thank you very much in advance for any advice, link, or active help !!!
Try this: $timezone=-1234; // Quebec timezone in seconds - should be negative $dateStr=gmdate('Y-m-d H:m:s',time()+$timezone); echo $dateStr; PHP:
or just do the offset. cst i think is +5 hours so echo date("F d, Y g:i a",strtotime("+5 hours")); PHP: