In this tutorial, you will learn-

mysqli_connect function mysqli_select_db function mysqli_query function mysqli_num_rows function mysqli_fetch_array function mysqli_close function PHP Data Access Object PDO

PHP mysqli_connect function

The PHP mysql connect function is used to connect to a MySQL database server. It has the following syntax. HERE,

	“$db_handle” is the database connection resource variable.

	“mysqli_connect(…)” is the function for php database connection

	“$server_name” is the name or IP address of the server hosting MySQL server.

	“$user_name” is a valid user name in MySQL server.

	“$password” is a valid password associated with a user name in MySQL server.

PHP mysqli_select_db function

The mysqli_select_db function is used to select a database. It has the following syntax. HERE,

	“mysqli_select_db(…)” is the database selection function that returns either true or false

	“$database_name” is the name of the database

	“$link_identifier” is optional, it is used to pass in the server connection link

PHP mysqli_query function

The mysqli_query function is used to execute SQL queries. The function can be used to execute the following query types;

	Insert

	Select

	Update

	delete

It has the following syntax. HERE,

	“mysqli_query(…)” is the function that executes the SQL queries.

	“$query” is the SQL query to be executed

	“$link_identifier” is optional, it can be used to pass in the server connection link

PHP mysqli_num_rows function

The mysqli_num_rows function is used to get the number of rows returned from a select query. It has the following syntax. HERE,

	“mysqli_num_rows(…)” is the row count function

	“$result” is the mysqli_query result set

PHP mysqli_fetch_array function

The mysqli_fetch_array function is used fetch row arrays from a query result set. It has the following syntax. HERE,

	“mysqli_fetch_array(…)” is the function for fetching row arrays

	“$result” is the result returned by the mysqli_query function.

PHP mysqli_close function

The mysqli_close function is used to close an open database connection. It has the following syntax. HERE,

	“mysqli_close(…)” is the PHP function

	“$link_identifier” is optional, it is used to pass in the server connection resource

Let’s look at practical examples that take advantage of these functions. Creating the MySQL database This tutorial assumes knowledge of MySQL and SQL, if these terms are unfamiliar to you, refer to our MySQL and SQL tutorials. We will create a simple database called my_personal_contacts with one table only. Below are the steps to create the database and table.

	Connect to MySQL using your favorite access tool such as MySQL workbench, phpMyAdmin etc.

	Create a database named my_person_contacts

	Execute the script shown below to create the table and insert some dummy data

We now have a database set up that we will manipulate from PHP. Reading records from the database We will now create a program that prints the records from the database. Executing the above code returns the results shown in the diagram shown below

Inserting new records

Let’s now look at an example that adds a new record into our table. the code below shows the implementation. Executing the above code outputs “Poseidon has been successfully added to your contacts list” go back to the select query example and retrieval your contacts again. See if Poseidon has been added to your list. Updating records Let’s now look at an example that updates a record in the database. Let’s suppose that Poseidon has changed his contact number and email address. Deleting records Let’s now look at an example that removes records from the database. Let’s suppose that Venus has a restraining order against us, and we must remove her contacts info from our database.

PHP Data Access Object PDO

The PDO is a class that allows us to manipulate different database engines such as MySQL, PostGres, MS SQL Server etc. The code below shows the database access method using the PDO object. Note: the code below assumes knowledge of SQL language, arrays, exception handling and foreach loop. HERE,

	“try{…catch…}” is the exception handling block

	“$pdo = new PDO(“mysql…” creates an instance of the PDO object and passes the database drivers, server and database names, user id and password.

	“$pdo->setAtt…” sets the PDO error mode and exception mode attributes

	“$pdo->exec(‘SET NA…” sets the encoding format

ODBC ODBC is the acronym for Open Database Connectivity. It has the following basic syntax. HERE,

	“odbc_connect” is the PHP built in function

	“$dsn” is the ODBC data source name.

	“$user_name” is optional, it is used for the ODBC user name

	“$password” is optional, it is used for the ODBC password

The example used assumes you;

	Are Using Windows OS

	You have created an ODBC link to the northwind Microsoft Access database named northwind

Below is the implementation code for ODBC data access

Summary

	MySQL is an open source relational database management available on most web hosting servers

	PHP has a rich collection of built in functions that simplify working with MySQL

	PDO is the acronym for PHP Data Object; it is used to connect to different database engines using the same object

	PHP uses the odbc_connect function to manipulate databases via ODBC