This may seem like a stupid question, but I'll ask anyway. I'm curious to know what is faster when connecting your database to php code. Is it faster to add a link connection $link to your php queries like I have here, or is it faster not to use a link to connect and let the coding search for any available open connection.
$link = @mysql_pconnect('mysql.domain.com', 'something', 'somethingelse')
or die ('Could not connect');
@mysql_select_db('database', $link)
or die ('Could not select database');
mysql_query("select something from table where something='$something'", $link);