Possible Duplicate:
What happens if MySQL connections continually aren't closed on PHP pages?
If you forget sometimes to close the connection will be close in a while, automatically or will be stay open?
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
$db = mysql_select_db(DB_DATABASE);
.
.
your code
.
.
and you forget to mysql_close($link);
From
mysql_connect()function documentation:PS. You should consider moving to PDO or at least mysqli driver.