hmm.. what i am trying to do is take the mysql datetime, 2002-10-10 and format it to say "Tuesday, October 10th, 2002" or whatver the datetime is. I can grab "Octover 10th, 2002" by using this:
// DATETIME STRING FORMAT FUNCTION.
function format_date($sql_date) {
$arr = explode("-", $sql_date);
return date("F j, Y", mktime(0,0,0, $arr[1], $arr[2], $arr[0]));
}
but i want to format it like i mentioned above. Any ideas?