//to convert a time for MySQL
$myinput='12/15/2005';
$sqldate=date('Y-m-d',strtotime($myinput));
echo $sqldate."<br />";
//Monday April 10,2006 your example date
$testdate="2006/4/10"; //From MySQL to your $mydate
$mydate = date('l F j, Y',strtotime($testdate));
echo $mydate;