How do I connect to my MySQL databases through PHP?

Use the following outline to connect and query the MySQL server from within your PHP scripts. 

1. Connect To The mySQL Server
Use the following statement to connect to the database server. Substitute the username, and password for the ones you created. 

MYSQL_CONNECT('localhost','USERNAME','PASSWORD');

2. Select Your Database 
Use the following statement to select the database. Make sure you substitute the example with your database name. 

@mysql_select_db("DATABASENAME"); 

For more information on accessing your MySQL databases through PHP, please visit http://www.php-mysql-tutorial.com/connect-to-mysql-using-php.php .

  • 0 Usuários acharam útil
Esta resposta lhe foi útil?

Artigos Relacionados

How do I create a MySQL database?

Overview There are two primary steps when creating a MySQL user. The first step is to create a...

How do I repair my MySQL database?

Overview You can repair your MySQL database by using the "Repair DB" feature in cPanel. Steps...

How to Create a Database in cPanel

1. Log in to your cPanel account.2. In the Databases section, click on MySQL Databases. 3. In the...

How to Edit a Database Table via phpMyAdmin in cPanel

1. Log in to your cPanel account.2. In the Databases section, click on phpMyAdmin.3. Click on the...

How to Import a Database via phpMyAdmin in cPanel

1. Log in to your cPanel account.2. In the Databases section, click on phpMyAdmin.3. From the...