Home > Article > Backend Development > How to check whether php is connected to the database
How to connect to the php database and how to determine whether the database connection is successful.
Create a new php file (recommended learning: PHP video tutorial)
## Set variables and use the mysql_connect() function to connect to the database. The parameters in brackets are the database address, user name and database password
The database is connected. Then the database has What if the link is not successful?Judge by if
If the connection is successful, output: Database connection is successful
If the database is not connected to the output die() function, the database connection fails and mysql_error() is used to output the error
The above is the detailed content of How to check whether php is connected to the database. For more information, please follow other related articles on the PHP Chinese website!