Select Data From a Database Table Using PHP MySQLi

Select Data From a Database Table Using PHP MySQLi

In previous tutorial we have seen how to Insert Data into Database using PHP MySQLi and we understand how to add records in mysql database table using PHP. In this tutorial we will discuss how to select data from database table using PHP MySQLi. This post will let you help to understand how to fetch … Read more

Insert Data into Database using PHP MySQLi

In this tutorial we will see how to Insert Data into Database using PHP MySQLi. First we create a database then table after that we start to insert data into database table using php mysqli.Mysqli is extended version of MySQL. We will use mysqli to access mysql database. To insert data in database table we … Read more

How to Setup MySQL Connection Using PDO in PHP

How to Setup MySQL Connection Using PDO in PHP

In previous article, we have discussed that MySQL is depreciated and their alternative options are MySQLi and PDO(PHP Data Object) . In that you have learned how to set up connection using MySQLi in PHP with procedural and object-oriented approach. In this tutorial you will get how to set up a PHP MySQL connection using … Read more