how can i retrieve 10 records from a mySQL database and display it in one single page in a preferred order
displaying mySQL data in php
Collapse
X
-
if you're receiving large amounts of records it may be good to use mysql_free_resu lt() at the end, this will clean out your memory.. and if you don't like mysql_fetch_ass oc you could use mysql_fetch_arr ay, which is what I usually use..
I would also suggest using mysql_close() when you're doneComment
Comment