HELP!! mY $RESULT results in "Resource ID #8"

A

Anonymous

Guest
mysql_query() does not return your data, it returns a resource that represents the cells of your data. If you want to retrieve that data, you must use a function such as mysql_fetch_assoc(). This is all in the docs.
 
Back
Top