MySQL Database Php

resource mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] ) 
try { 
    $mysqlhost = "localhost"; 
    $mysqluser = "root"; 
    $mysqlpass = ""; 
    if ($db = mysql_connect ($mysqlhost,$mysqluser,$mysqlpass)){ 
        echo "Successfully connected to the database."; 
        mysql_close ($db); 
    
    } else { 
        throw new exception ("Sorry, could not connect to mysql."); 
    } 
} catch (exception $e) { 
echo $e->getmessage (); 

?>