How do I connect to a MySQL database on PHP?

 
How do I connect to a MySQL database on PHP?

$db=mysql_connect("example.com", "username", "password");
mysql_select_db("database", $db);


Replace example.com with your domain name. And the username, password and database with the username, password and database name that you chose.