I'm having some issues converting yyyy-mm-dd to text, and could use some pointers. This is what I currently have, but this obviously just outputs the numerical date:
$insert_date = $row['INSERT_DATE'];
$line_text = $row['LINE_TEXT'];
echo "<tr height='10'><td>".$insert_date."</td>";
I'm unsure whether I should use the strtotime or date functions?
In other words, dates are in the MySQL DB as numerical entries, in the format, yyyy-mm-dd. Currently, the outputs matches this (eg, 2007-02-14). I'd prefer this to appear as February 14, 2007.
Thanks in advance.