if I have this date, which is in eastern time... date("m/d/y - g:ia T") how do I make if pacific time (-3 hours)
i know about the manual, its no help with this question...thanks!
this should help a bit
http://www.phpbuilder.com/columns/akent20000610.php3?page=5
Does anyone have a simple solution to this question?? An analog to the ASP dateadd() function??
Try this:
date("your string", time() - 3 * 60 * 60);
Diego
Thanks from San Diego, Diego! That was it!
Thanks also, DigitalExpl0it!