I've got a date stored in my database in the following format "0000-00-00" which is YYYY-MM-DD
I'm wanting to take it take this and convert it to a string that says the date, month in words and the year. As in convert 1993-03-18 to 18 March 1993.
This is what I have so far on my test server (so please no funny comments about getting injected)
$dob_form = mysql_query("select dob from users where id='$_SESSION[user_id]'");
$dob_day = substr($dob_form, -2);
$dob_mth = substr($dob_form, -5, 2);
$dob_mtc = date( 'F', mktime(0, 0, 0, $dob_mt) );
$dob_yr = substr($dob_form, -10, 4);
$dob_display = $dob_day + " " + $dob_mtc + " " + $dob_yr;
Can anyone see what I've done wrong and/or point me in the right direction?