I would like to know how to convert 2015-06-15 to June 15, 2015 in PHP This is essentially the format that it is stored as in mysql, and in how I retrieve it:
$crs_date1 = $row_crs['course_date1'];
then echo it:
echo $crs_date1
but I would rather echo it in a more readable format.
Thanks in advance