$con = mysql_connect("localhost","root","root"); //连接MySql服务器 mysql_select_db("my_db", $con); //连接MySql数据库
关闭连接:
mysql_close($con);