Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Padraic Brady's Blog:
An Example Zend Framework Blog - Part 5: Models w/Zend_Db & an Admin Module
May 01, 2008 @ 15:25:06

Padraic Brady is on part five of his series looking at making a blogging tool with the Zend Framework today. This time he focuses on the database side of things, working with models and making an admin module.

First of all I decided to add an Entries Model and Authors Model to the mix, primarily to get ready for when we can add new entries to our blog. This leads to where we can create new Entries; we add an Administration Module to the application with it's own distinct Layout.

He starts by making the database schema, an entries and authors table, before starting in on the models. They're made based off of the Zend_Db component's structure and they let the application interact with the data in the tables easily. His code for the modules is included as well as the controller and view for the admin module.

tagged: zendframework model zendb zendlayout controller administration module

Link:


Trending Topics: