In my PHP script, do I need to enter a mysql_free_result \"release resources\" statement for each sql query (insert, delete, etc.) and mysql_query pair that I have in the PHP script? Or is only one mysql_free_result statement needed, at the end of the program? If more than one are needed, then are the mysql_free_result statements associated with each query entered in the reverse order from which the queries are in the code.
Thanks