Re: [PHP] Problem with outputting date and time

2001-05-17 Thread James Holloway
Hi There, I had a similar problem because of BST (British Sumer Time). Have a look on Yahoo / Google etc for a site about Greenwich Mean Time, and find out the dates that the schemes take effect - I think it is March 25th to beginning or end of October. Then use a simple if statement. 3) && (

RE: [PHP] Problem with outputting date and time

2001-05-17 Thread Sandeep Hundal
what you could do is something like get the unix time, and add an hour to that, and then use the date function to output the date. $today = (time() + 3600); $output = date("F jS Y, h:ia", $today); hope that helps! /sunny -Original Message- From: Good Fella [mailto:[EMAIL PROTECTED]] Se