Welcome to the home page for PegParse, a simple PHP template parsing system that supports caching, logic and includes.
Category Archives: Programming
Dwoo PHP5 template engine
Dwoo is a PHP5 template engine which is (almost) fully compatible with Smarty templates and plugins, but is written from scratch for PHP5, and adds many features.
What’s new in PHP 5.3?
PHP 6 is just around the corner, but for developers who just can’t wait, there’s good news — many of the features originally planned for PHP 6 have been back-ported to PHP 5.3, a final stable release of which is due in the first half of this year.
php.activerecord
php-activerecord is an open source ORM library based on the ActiveRecord pattern. It aims to massively simplify the interactions with your database and eliminate the chore of hand written SQL for common operations. Unlike other ORMs, you do not need to use any code generators nor maintain mapping files for your tables. This library was …
Real-World OOP With PHP and MySQL
Numerous examples from robots to bicycles have been offered as “easy” explanations of what OOP is. I’ve opted to show you how OOP works with a real-life example, for a programmer. By creating a MySQL CRUD class you can easily create, read, update and delete entries in any of your projects, regardless of how the …
Easy Access With PDO CRUD
Abstract MySQL SQLite Summary Abstract The term CRUD refers to the four basic functionalities used in most PHP applications.