Home  >  Article  >  Backend Development  >  How to use database in php

How to use database in php

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-09-29 14:11:002854browse

How to use database in php

First we need to create a database in the MYSQL database, as shown in the figure below:

How to use database in php

Then use EditPlus to create a php file , write the following connection statement, mainly using the mysql_connect method.

How to use database in php

Related recommendations: "php environment construction"

Then you need to add header encoding information on top of the connection statement, as shown in the figure below Display, telling the browser to use utf-8 for encoding.

How to use database in php

#After running the program, you will see the prompt as shown below on the browser interface, which means the database connection is successful.

How to use database in php

If we change the password for the database connection, as shown in the figure below, let’s test whether it is successful.

How to use database in php

At this time, you will see the content as shown below on the page. The connection has reported an error and prompts that the connection failed.

How to use database in php

To sum up, using PHP to connect to the MYSQL database is mainly done through the mysql_connect method. Please note that the username and password must be written correctly.

The above is the detailed content of How to use database in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:How to call method in phpNext article:How to call method in php