PHP、MySQL选择数据库 ---------------- 002

来源:互联网 发布:网络销售怎么加人 编辑:程序博客网 时间:2024/05/21 01:51
<?phpprint "Opening the connection to the database server<br />";mysql_connect("localhost","root","password");print "Select a database<br />";$result = mysql_select_db("phpweb");if( $result){print "Database selected successfully";}else{print "There was problem with the database selection<br />";}?>

一旦选择成功,全部查询都是针对这个数据库进行的。


原创粉丝点击