Coffeerings-PHP-WAX
PHP-WAX Controllers
How the controller worksThe controller is one of the three core strands of the MVC Pattern. It is in charge of collecting data from the model or database tables and sending the relevant information to the viewread more
PHP-WAX Models
The file WXActiveRecord.php is the framework's ORM (Object Relational Mapper). This class sits on top of PDO to provide object-oriented, database-agnostic, database access. Your first job is to create a class for each of ...read more
PHP-Wax Model Validation
Validating DataBefore a model is saved to the database a method called validations() will automatically be run. This can generally be used as a hook to add validation information to the model class. There are a nu...read more
PHP-WAX Model Associations
For complicated model associations, the framework gives you a big helping hand by taking care of the dirty work of managing join tables. Take a typical example, the user can create pages and upload images, but yo...read more
PHP-WAX View Helpers
There are plenty of repetitive tasks that you need to do inside an HTML view. The beauty of helpers is that you only have to use them if they're helpful. Over the course of the next few versions the number and functionality of th...read more
RECENT ARTICLES
Lightweight blog created on Ruby/GAA/Datastore stack
Put this together a month or two back but never got around to replaci... read more
Using Node JS and Couch DB Stack for Web Dev
With the recent hype surrounding Node.js I thought I'd better get my ... read more
Campaign Monitor API Using PHP and SOAP
Campaign Monitor has a fairly comprehensive API and support docs.&nbs... read more
Google Maps Snippet
Absolute bare basics when it comes the Google Map api but a snippet o... read more