Validating and Styling HTML Forms

July 14th, 2010

An example and explanation of one method of validating a form using jQuery. Also, some tips on how to style a form.

CSS, Javascript / AJAX

Create Your Own lightweight PHP MVC Framework

July 13th, 2010

A quick walk though of creating your own PHP MVC Framework. A useful exercise to better understand the roles of the MVC players.

PHP

AMFPHP Example

July 9th, 2010

Short AMFPHP example, explaining the bullets in the process of installing AMFPHP and connecting Flash to PHP through its gateway.

Flash / Actionscript, PHP

AS3 PureMVC Review

July 6th, 2010

A review of the basic usage of the AS3 PureMVC framework. Great for a quick reminder of how to use the PureMVC.

Flash / Actionscript

Traditional Inheritance With Javascript

July 6th, 2010

Javascript allows inheritance. It is however more complex than using when using traditional OOP languages with their built in extend functionality. Javascript Design Patterns.

Javascript / AJAX

Using Encapsulation With Javascript

July 6th, 2010

Javascript doesn’t natively support encapsulation as OOP languages do. It is however possible to achieve encapsulation with javascript using fairly simple workarounds. Encapsulation is done through closures.

Javascript / AJAX

Resizing Images With PHP

March 21st, 2010

This script resizes all of the image files in a directory which are larger than sizes prescribed in the script.

PHP

Creating Your First jQuery Plugin

October 30th, 2009

Creating jQuery plugins is very easy. This simple tutorial will get you started creating your own plugins.

Javascript / AJAX

PHP Database Singleton

October 25th, 2009

Explanation and example of the singleton design pattern used to connect to a mysql database.

PHP ,