Your Webhosting Questions
Answered by the Webhosting Experts
Tags
...
...

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 who have created in the MyAdmin interface and have given adequate
    permissions to this database.
    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 in the MyAdmin interface in your CP. Most problems that arise with your scripts will be due to incorrect permission settings.

Need More Personalized Help?

If you have any further issues, questions, or would like some assistance checking on this or anything else, please reach out to us from your my.hivelocity.net account and provide your server credentials within the encrypted field for the best possible security and support.

If you are unable to reach your my.hivelocity.net account or if you are on the go, please reach out from your valid my.hivelocity.net account email to us here at: [email protected]. We are also available to you through our phone and live chat system 24/7/365.

Tags +
...