I open a mysql connection with pconnect instead of connect(bla bla)
$link = mysql_pconnect( $location , $user , $password );
How do i close this connection??? Any help is welcome
Thanks Mark
You don't (and can't) close it, that's the point of the word "persistant". The connection stays open for X minutes after using it, so other scripts may use the same connection lateron.