mysql_free_result()
bool mysql_free_result(results)Use this function to free the memory containing the results set given. The function returns true if it’s successful, and false if it’s unsuccessful. Here is an example:
... mysql_free_result($results); mysql_close( ); ?>
There’s not much to this function. It merely flushes out the data for the location in memory referenced by the variable given.