![]() |
VOOZH | about |
What is MySQL?
MySQL is an open-source relational database management system (RDBMS). It is the most popular database system used with PHP.
Structured Query Language (SQL). The data in a MySQL database are stored in tables that consist of columns and rows.
MySQL is a database system that runs on a server. MySQL is ideal for both small and large applications. MySQL is a very fast, reliable, and easy-to-use database system. It uses standard SQL. MySQL compiles on a number of platforms.
How we can connect PHP to MySQL?
PHP 5 and later can work with a MySQL database using:
Which one should we use MySQLi or PDO?
Both MySQLi and PDO have their recompenses:
In short, you can choose whichever you want if you want to stick to MySQL otherwise you should go with PDO.
Connection to MySQL using MySQLi
PHP provides mysql_connect() function to open a database connection.
This function takes a single parameter, which is a connection returned by the mysql_connect() function.
You can disconnect from the MySQL database anytime using another PHP function mysql_close().
There is also a procedural approach of MySQLi to establish a connection to MySQL database from a PHP script.
It can be done in two ways:
MySQLi Object-Oriented
MySQLi Procedural
Connection to MySQL using PDO