Home > Database > Mysql Tutorial > body text

Use the mysql_select_db() function to select the database file (PHP method 2 for operating MySQL database)

黄舟
Release: 2017-04-20 13:49:04
Original
4203 people have browsed it

How to operate MySQL database with PHP - how to select a database file

In our daily PHP development work, when we want to obtain data from the database , After connecting to the database in PHP, the next step is to select the database file, and we need to use a function, the mysql_select_db() function to select the database!

Before selecting the database, the first thing we do is to connect PHP to the database. We discussed this in the previous article "Use the mysql_connect() function to connect to the database (Method 1 of PHP operating MySQL database)》There is a detailed introduction on how to establish a connection, so I won’t introduce it here. Today we mainly talk about the mysql_select_db() function!

The syntax format of the mysql_select_db() function is as follows:

mysql_select_db(string 数据库名[,resource link_identifier])
Copy after login

Use the mysql_select_db() function to select the database file (PHP method 2 for operating MySQL database)

Or:

mysql_query("use 数据库名"[,resource link_identifier])
Copy after login

The following example uses the mysql_select_db() function connection Database, the database is php_cn, the specific example code is as follows:

<?php
header("Content-Type:text/html; charset=utf-8");
$link = mysql_connect("localhost","root","root")or die("不能连接到数据库服务器!".mysql_error()); //连接MySQL 服务器
$db_selected = mysql_select_db("php_cn",$link);                  //选择数据库php_cn 
if($db_selected){
    echo "选择数据库成功";
}
?>
Copy after login

The running result is:

Use the mysql_select_db() function to select the database file (PHP method 2 for operating MySQL database)

In addition, in the above code, $db_selected = mysql_select_db( "php_cn",$link); You can use the following code instead:

$db_selected = mysql_query("use php_cn",$link);                  //选择数据库php_cn
Copy after login

The mysql_query() function is a dedicated function for query instructions. All SQL statements are executed through it and the result set is returned. We will introduce this function in detail below. For details, please read "Using the mysql_query() function to execute SQL statements (Method 3 of PHP operating MySQL database)"!

The above is the detailed content of Use the mysql_select_db() function to select the database file (PHP method 2 for operating MySQL database). For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template