Chapter 3
Creating an Application Using Frameworks
IN THIS CHAPTER
Creating the template
Building the scaffolding
Modifying the scaffolding code
The previous chapter introduces some of the various framework packages available for PHP programming. Using a framework package can help simplify your web application development efforts, but you have to follow the framework rules. This chapter dives into creating a simple application using CakePHP so you can get a feel for just how frameworks operate, and how you can add your own PHP touches to the code they generate.
Building the Template
The CakePHP framework package creates a lot of the behind-the-scenes code for your application. That allows you to focus more on what’s important: the code that does all the application-specific work.
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access
For this demo, I walk you through re-creating some of the basic features from the AuctionHelper application introduced in