what is the output of the getDate function is i write like this:
Code:$today = getDate();
and how to get today date in format(dd/mm/yyyy)?
Printable View
what is the output of the getDate function is i write like this:
Code:$today = getDate();
and how to get today date in format(dd/mm/yyyy)?
Any reason why you can't just use Date()???
:)PHP Code:$today = date("d-m-Y");