Using ORM in PHP without a framework.
What is an ORM?
An ORM is an abstraction of the information of the database. For example, let's say we have a list of cities and we want to list it.
It is the PHP PDO version:
$stmt = $pdo->prepare("SELECT * FROM cities");
$stmt->execute();
$result =...
southprojects.com9 min read