PDA

Click to See Complete Forum and Search --> : getDate function!!


kenny_oh
Apr 12th, 2006, 06:33 AM
what is the output of the getDate function is i write like this:

$today = getDate();



and how to get today date in format(dd/mm/yyyy)?

..:RUDI:..
Apr 12th, 2006, 06:56 AM
Any reason why you can't just use Date()???


$today = date("d-m-Y");

:)