Top Categories
37: How to show database data on a website using MySQLi | PHP tutorial | Learn PHP programming
- Category:
- Sub Category:
How do you show database data on a website using PHP - PHP tutorial. Today we are going to learn how to get data from a database using PHP. Regarding people asking why we are not using PDO: In PHP there exists two methods of programming, which are "Procedural programming (PP)" and "
How do you show database data on a website using PHP - PHP tutorial. Today we are going to learn how to get data from a database using PHP. Regarding people asking why we are not using PDO: In PHP there exists two methods of programming, which are "Procedural programming (PP)" and "Object oriented programming (OOP)". In this PHP course we are using PP, and not OOP. When using PP, it is possible to use MySQLi and Prepared statements. And when using OOP it is possible to use MySQLi, Prepared statements, and PDO. Therefore we cannot use PDO in these lessons here. HOWEVER, in a few episodes I will show how to get and insert data into a database using prepared statements :)