Page 1 of 1

Today() in PHP

Posted: Mon Dec 08, 2003 9:16 am
by ericsodt
Can someone help me out... I am not near any documentation and have limited access to the web. I am trying to get today's date in the format of monday Dec 8 00:00:00 EST 2003. Can anyone help me out.

Thanks

Posted: Mon Dec 08, 2003 9:22 am
by JayBird
try this

Code: Select all

echo date ("M j H:i:s T Y");
Mark

Posted: Mon Dec 08, 2003 9:25 am
by ericsodt
Thanks, done
Bech100 wrote:try this

Code: Select all

echo date ("M j H:i:s T Y");
Mark