[PHP] Time Wrong

2009-01-21 Thread Gary
Im pretty new with php, so this might be a pretty novice mistake, but the 
time displays wrong on two computers.

  ?php echo date('l F jS, o h i A');?

Shows up 2 hours late...time on both computers is correct.

Thanks 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Time Wrong

2009-01-21 Thread Edmund Hertle
2009/1/21 Gary gwp...@ptd.net

 Im pretty new with php, so this might be a pretty novice mistake, but the
 time displays wrong on two computers.

  ?php echo date('l F jS, o h i A');?

 Shows up 2 hours late...time on both computers is correct.

 Thanks


Do you mean on two computers visiting a php script? PHP is running on the
server, so it will use server time
-eddy


Re: [PHP] Time Wrong

2009-01-21 Thread Nathan Rixham

Edmund Hertle wrote:

2009/1/21 Gary gwp...@ptd.net


Im pretty new with php, so this might be a pretty novice mistake, but the
time displays wrong on two computers.

 ?php echo date('l F jS, o h i A');?

Shows up 2 hours late...time on both computers is correct.

Thanks



Do you mean on two computers visiting a php script? PHP is running on the
server, so it will use server time
-eddy



makes sense.. check out http://php.net/date_default_timezone_set - 
probaly needs set


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Time Wrong

2009-01-21 Thread Gary
Thanks for all the replies, I was able to set the time zone with one of the 
tutorials.

Thanks again

Gary
Nathan Rixham nrix...@gmail.com wrote in message 
news:49779f04.4060...@gmail.com...
 Edmund Hertle wrote:
 2009/1/21 Gary gwp...@ptd.net

 Im pretty new with php, so this might be a pretty novice mistake, but 
 the
 time displays wrong on two computers.

  ?php echo date('l F jS, o h i A');?

 Shows up 2 hours late...time on both computers is correct.

 Thanks


 Do you mean on two computers visiting a php script? PHP is running on the
 server, so it will use server time
 -eddy


 makes sense.. check out http://php.net/date_default_timezone_set - probaly 
 needs set 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php