How can I change the format of date from July30,2003 to 07-30-2003. Does php has such function?
Yes it does...take a look at this function: http://www.php.net/manual/en/function.strtotime.php
... however not all date type formats are supported, more on this here: http://www.gnu.org/manual/tar-1.12/html_chapter/tar_7.html
the last link is found in the manual under the function description.
hth
Hi
try like this , date("m-d-Y");
Kula