How do you use the mysql function DATE FORMAT() to reformat the date out of mysql goofy date structure?
Also - is there a mySQL or PHP function that will return the number of records selected from a query or do I need to count this manually?
This doesn't work:
print $mysql_numfields($result);
Nor does this:
$res = mysql_db_query($db,"select count(answers_id) from answers"

;
$row_count = mysql_result($res,0,"count(answers_id)"

;
print $row_count;
Now what?
thanks
[This message has been edited by heath (edited 09-03-99)]