How to Connect to MySQL Using PHP

If you already know some of the basics of writing PHP scripts, you may be ready to learn about a set of built-in PHP functions that allow you to connect to and manipulate a MySQL database. If you do not already have a MySQL server (most...
Method 1 of 3:

Connecting to a Server

  1. How to Connect to MySQL Using PHP Picture 1
    Create a new PHP file on your web server, and open it in your favorite text editor.
  2. How to Connect to MySQL Using PHP Picture 2
    Start your file by typing the open and close PHP tags with some space in between to work with.
  3. How to Connect to MySQL Using PHP Picture 3
    Type a on a new line of code to create the communication with the MySQL server. The function "mysql_connect" takes a minimum of 3 string arguments. The first is the IP address or domain name of your server; you should change this from localhost to the address of your MySQL server. The second argument is the MySQL user that we will authenticate, and the third argument is the password for our MySQL user (in this case I left the password blank).
    1. The output of "mysql_connect" is a resource datatype, and in the code above we assigned it to a variable ($con) so we could use it later. For more information on mysql_connect(), visit the PHP documentation.
Method 2 of 3:

Selecting a Database

  1. How to Connect to MySQL Using PHP Picture 4
    Type this on a new line. Before your can run any queries on a specific database, you must select which database. In PHP to do this we use the "mysql_select_db" function, which requires 1 argument. The first argument in the code is required, it is the name of the database to connect to. The second argument I used is not required but good practice; it defines which server connection to use to select the database.
Method 3 of 3:

Querying a Table

  1. How to Connect to MySQL Using PHP Picture 5
    Type this on a new line. The function mysql_query works in two ways. "For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning result set, mysql_query() returns a resource on success, or FALSE on error. For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error." (PHP documentation).
    1. These lines of code do two things. First they call "mysql_query," which will return true or false based on the success of the query. If the output of mysql_query is false the script will die and run the "mysql_error" function (which simply returns the previous MySQL error).
    2. The mysql_query function only requires one argument, but like the mysql_select_db function, it is good practice to include a second.
      1. The first argument is a string: a single MySQL query (multiple queries not allowed). The query above creates a new table called "php tutorial".
      2. The second argument is the connection resource we are using (in our case $con).
  2. How to Connect to MySQL Using PHP Picture 6
    Type this on a new line.The first line of code is similar to the last step's code. It is in there to give of some data to select. Below, see we are setting the output of mysql_query to a variable called $result.
    1. Also notice how the code does not use "or die"(instead it uses the if control statement. This can save you grief when you start getting into error handling beyond simply killing the script. You don't have to worry about it too much now, and you can use "or die" on MySQL queries that return a result set if you want.
    2. After the else statement we have a while statement. This part of the code can be confusing so bear with me. mysql_fetch_array will return an array of data containing a single row of the result, labeled by column; however, the next time mysql_fetch_array is run it will return an array of the next row in the result set.
      1. The while statement will keep iterating through all the rows (assigning them as arrays to $row), until mysql_fetch_array reaches the end of the result set, then it will return false and the while statement will close. Confusing yes. But this method works well.
  3. How to Connect to MySQL Using PHP Picture 7
    Take some time to play around with these concepts. These functions allow you to do so much more with PHP. I would suggest taking a look at this wikiHow page: How to Create a Basic Login Script in PHP. I would also suggest making your own project like a simple browser turn based rpg to get the hang of working with a database.
4 ★ | 1 Vote | 👨 449 Views
« PREV POST
NEXT POST »