$connection = mysql_connect($dbhost, $dbuser, $dbpass) or die ("Unable to connect to MySQL server." . mysql_error());
$db = mysql_select_db($dbname, $connection) or die ("Unable to select database: " . mysql_error());
I use this each time a user access's a page that require access to a table, is there a command to close this connection once the work is complete?
Thanks