How do I connect to MySQL through PHP?

Use the following outline to connect and begin querying 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 ones assigned to you.
MYSQL_CONNECT('localhost','USERNAME','PASSWORD');

2. Select Your Database
Use the following statement to select the database you wish to connect to. Make sure you substitute the example with your database name.
@mysql_select_db("DATABASENAME");

3. Executing A Query
You are now ready to execute your queries. Remember that the databases and users used must be created under the MySQL icon in your Control Panel. Most problems that arise with your scripts will be due to incorrect permission settings.

Was dit antwoord nuttig?

 Print dit artikel

Lees ook

After I install osCommerce I get sessions directory error ?

Set this in both your admin/includes/configure.php and catalog/includes/configure.php: From:...

Optimizing Wordpress on Shared Hosting

Wordpress blogs can be extremely resource intensive if you happen to experience a surge in...

Wordpress theme installation issue?

I recently installed a few new themes to my wordpress site and i can see the colors and fonts,...

My PHP program tells me it can't access the database and gives an error message ?

MySQL - When you create a new database you have to specify a database name. Then you create a...

How to reset your password for Oscommerce.

osCommerce uses .htaccess and .htpasswd format files to manage the protection on the admin...