BLOG

How to use Doctrine and PHP to connect to databases

How to use Doctrine and PHP to connect to databases

Doctrine is an ORM or Object Relational Mapping. It is a software component that allows you to transform data from a database table into objects that can be used in your application, and vice versa. This article gives you a simple usage example of displaying data from a MySQL table.
How to use PDO and Bootstrap to connect PHP to databases

How to use PDO and Bootstrap to connect PHP to databases

PDO makes it possible to create PHP code that is more independent of a data server. In this article, we will see how to use PDO combined with Twitter Bootstrap to display data from MySQL.
How to create and secure a member area in PHP

How to create and secure a member area in PHP

Are you struggling to understand how to create a protected member area? This training teaches you how to use a login form and session variables to login a user. Data in the form is compared to data in a database.