Book Image

Beginning Yii [Video]

By : Chris Backhouse
Book Image

Beginning Yii [Video]

By: Chris Backhouse

Overview of this book

<p>Yii is a fast, secure, and professional web development framework that makes PHP ideal for Web 2.0 applications. The Beginning Yii video course shows you how to rapidly develop sophisticated and reliable web apps using PHP and Yii.<br /><br />Using screencast demonstrations and clear explanations, this friendly video course will show you how to:</p> <ul> <li>Install and configure Yii on your existing web stack</li> <li>Create working prototypes in a single command using Yii application generators</li> <li>Develop applications that follow the popular Model-View-Controller methodology</li> <li>Manipulate data from various sources with the ActiveRecord class</li> <li>Find and use powerful third party extensions, quickly adding functionality to your apps</li> <li>Improve your site’s look and feel with themes and layouts</li> <li>Test and debug your application with PHPUnit and Selenium</li> <li>Build solid error handlers</li> <li>Serve custom images from your Yii code</li> <li>Deploy your application to a live server environment</li> </ul> <p>Throughout the videos Chris Backhouse shares his practical experiences as a Yii developer in a clear, friendly manner. If you’ve never used Yii before you’ll be amazed how quickly it enables you to build powerful and reliable applications.<br /><br />You’ve heard about the benefits of web frameworks for web application developers. Now watch Beginning Yii and experience these benefits for yourself.</p> <h1>Style and Approach</h1> <p>Packt video courses are designed to cover the breadth of the topic in short, hands-on, task-based videos. Each course is divided into short manageable sections, so you can watch the whole thing or jump to the bit you need. The focus is on practical instructions and screencasts showing you how to get the job done.</p> <p>Beginning Yii is a step-by-step tutorial for developing web applications using Yii. This video course follows the iterative approach to software development while developing a photo gallery website.</p>
Table of Contents (8 chapters)
Chapter 3
Starting Development (Using Our IDE)
Content Locked
Section 5
Creating and Updating Our Album Model
Normal 0 false false false EN-US X-NONE X-NONE /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin-top:0in; mso-para-margin-right:0in; mso-para-margin-bottom:10.0pt; mso-para-margin-left:0in; line-height:115%; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} Understanding the controller processing in a create and update scenario helps you change the create and update forms and manage model validation. - Massively assign posted variables directly to the model attributes - Triggering the validation with the model->save method - Introducing flash messages to pass status messages across controllers and forms.