Jorge Castrosouthprojects.comยทMar 11, 2023Using 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 =...539 readsPHPAdd a thoughtful commentNo comments yetBe the first to start the conversation.