How to set current date using php
Nandhu
|
2008-05-05 13:33:59 |
How to set current date using php
I want to the system date to appear in a ytext box using php coding.... Is that possible in php?
Veselin Stoilov
|
2008-05-05 18:02:27 |
Re:
yes you can use
<input type="text" value="<?php echo date("j, n, Y"); ?>" />
Nandhu
|
2008-05-06 09:03:09 |
Re: Thank u
Yes, I got it....
Thank You.