Please let me know if I can convert the data format like "Jun 15,2003 13:15:08" to "06/15/03 13:15".
I need to convert the data in database to other format.
Thanks.
Use the strtotime function to convert to the UNIX timestamp format, and then the date function to format it the way you want it.
http://us3.php.net/manual/en/function.strtotime.php http://us3.php.net/manual/en/function.date.php