I was wondering if anyone using MySQL and PHP have experienced performance problems on their server? I use
// close connection
mysql_free_result($queryname);
mysql_close($connection);
after every connection and query to free up the resources. I was wondering if I needed to do anything. I want to make sure that once the page loads, all possible resources are being freed up. The server memory seems to slowly fill up and crash every 2 weeks. ANy ideas what would cause that?