Archives for: "March 2013"

PHP Abstract Base Class - Including validation

An example of a base class. Sample extension and call for instantiation: PHP<?phpclass Course extends Base {         public function __construct($properties) { &#1… more »

PHP filter_var_array Example

This is a very simple PHP contact form validation script. It fails silently, based on the expectation the client is validating the data prior to submitting it. In this case, if the server receives invalid inputs, inputs with invalid data, or a data se… more »