PDA

View Full Version : PHP question



TheRunes
February 13th, 2001, 20:04
Is there a way to use PHP to insert the current date into a page?

FluxFX
February 13th, 2001, 20:23
Build Date - thats all i know

i am new to php so bare with me ;]

razor
February 13th, 2001, 20:31
use the date() function. go to php.net and look up date in the quick ref.

Zef Hemel
February 13th, 2001, 22:47
$thedate = date("M d Y", time());

Good luck