Home > Database > Mysql Tutorial > body text

Detailed explanation of five steps to access MYSQL database with PHP (picture)

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

Detailed explanation of the five steps for PHP to access the MYSQL database (picture)

The database is necessary in our daily development of PHP, so the MYSQL database is a It is a database that many programmers love. Because MYSQL is an open source, a little bit commercial, and has a relatively high market share, it has always been considered the best partner of PHP. At the same time, PHP also has very powerful Database support capabilities, this article mainly explains the basic steps for PHP to access the MySQL database.

The basic steps for PHP to access the MySQL database are as shown in the figure:

Detailed explanation of five steps to access MYSQL database with PHP (picture)

1. Connect to the MySQL database

Use the mysql_connect() function to establish a connection to the MySQL server. Regarding the use of the mysql_connect() function, we will introduce it in detail later.

2. Select the MySQL database

Use the mysql_select_db() function to select the database of the MySQL database server. And establish a connection with the database. Regarding the use of the mysql_select_db() function, we will have a detailed explanation later.

3. Execute SQL statements

Use the mysql_query() function to execute SQL statements in the selected database. There are mainly 5 ways to operate the data. Below we respectively Make an introduction.

  • Query data: Use the select statement to implement the data query function.

  • Display data: Use the select statement to display the query results of the data.

  • Insert data: Use the insert into statement to insert data into the database.

  • Update data: Use the update statement to update records in the database.

  • Delete data: Use the delete statement to delete records in the database!

The specific use of the mysql_query() function will be introduced in detail later~

4. Close the result set

The database operation is completed Finally, the result set needs to be closed to release system resources. The syntax format is as follows:

mysql_free_result($result);
Copy after login

Tips:

If there are multiple Database access is required frequently in web pages, so you can establish a continuous connection with the database server to improve efficiency. Because each connection to the database server takes a long time and consumes a lot of resources, a continuous connection will be relatively more efficient. Efficiency, the way to establish a continuous connection is to call the function mysql_pconnect() instead of the mysql_connect function when the database is indirect. The established persistent connection does not need to call mysql_colse() to close the connection with the database server at the end of this program. The next time the program executes the mysql_pconnect() function here, the system will automatically directly return the established persistent connection ID number without actually connecting to the database.

5. Close the MySQL server

If the mysql_connect() or mysql_query() function is not used once, system resources will be consumed, and even a small number of users will finish the web site. The problem is not big at that time, but if the number of user connections exceeds a certain number, the system performance will decrease or even crash. In order to avoid this phenomenon, after completing the database operation, you should use the mysql_close() function to close the connection with MYSQL. server connection to save system resources.

The syntax format is as follows:

mysql_close($link);
Copy after login

Explanation:

The connection to the database in PHP is a non-persistent connection, and the system will automatically recycle it. Generally, there is no need to set it to close, but if it is a one-time scope If the result set of the lake is relatively large, or the website has a lot of visits, it is best to use the mysql_close() function to release it manually.

The steps for PHP to access the MySQL database are over. Isn’t it very simple? In the following article, we will introduce the method of PHP operating the MySQL database. For details, please read "How to operate the MySQL database with PHP-Usage mysql_connect() function connects to the database

The above is the detailed content of Detailed explanation of five steps to access MYSQL database with PHP (picture). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!