Knowledge Base

We are not offering 24/7 telephone support at this time, please open a Support Ticket

  • knowledgebase
  • announcements
Search

Most Popular
Recently Added
Recently Updated

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. Remember that you cannot connect to your databases remotely due to security reasons. You can only connect to them from your local host.

1. Connect to the mySQL Server
Use the following statement to connect to the database server. Substitute the username, and password for ones you have created in the WebControl System. 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. (Most problems that arise with your scripts will be due to incorrect permission settings.)


Properties ID: 000210   Views: 5820   Updated: 13 years ago
Filed under:
Support » Web Site » Web Hosting » Scripts
Support » Web Site » Web Hosting » PHP Tips

For news and system status updates, check: status.his.com

Check our Knowledge Base for How-To tips and answers to common questions.

We are not offering 24/7 telephone support at this time, please open a Support Ticket