I would like to format 2 different cells with the same type of date format, here is what I have done to get one to work, but not sure how to format a second one.
$conn = db_connect();
$query = "SELECT *, DATE_FORMAT(date, '%m/%d/%Y') AS thedate from minutes where id='$id'";
$result = @mysql_query($query);
Would like to also format "last_modified" to show date like the actual date field shows.
Btw, I have my dates entered like this in MySQL yyyy-mm-dd