How do I connect to MySQL through PHP?
Posted by kumar, Last modified by Kim S. on 20 January 2016 07:10 PM

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 with the 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.


Comments (0)
Post a new comment
 
 
Full Name:
Email:
Comments:
CAPTCHA Verification 
 
Please enter the text you see in the image into the textbox below (we use this to prevent automated submissions).