Hello
Does anyone know if there is a difference between this codes, php uses both to connect to the mysql database.
$session = mysql_connect ("localhost", "username", "password");
and
@ $session = mysql_pconnect "localhost", "username",
"password");
what does the @ sign do and why mysql_pconnect and not mysql_connect?