I want to transform a date from this format: 01/07/09 to this jan 07,09.
01/07/09
jan 07,09
How can I do that in PHP?
Just pass the date variable to strtotime. See PHP manual for more.
$date = "01/07/09"; echo date("M d,y", strtotime($date));