PHP drop-down list - Part 4 (Cleaning things up a bit)

February 14, 2017 by Christoff Truter

Up until this point we've got a very basic, but working drop-down list implementation, it is however quite fragile at the moment, since we're not doing enough validation checks not to mention all properties being public.

PHP  

PHP drop-down list - Part 3 (Maintaining State)

February 14, 2017 by Christoff Truter

Now that we've got everything serializing to HTML (or rather XHTML) properly, how do we retrieve selected values and maintain that state?

PHP  

PHP drop-down list - Part 2 (Serialization of elements to HTML)

February 14, 2017 by Christoff Truter

In order to serialize our newly created classes to the required markup, what needs to happen? We need to supply some metadata.

PHP  

PHP drop-down list - Part 1 (Knowing thy elements)

February 14, 2017 by Christoff Truter

In this series of posts I am going to create a PHP drop-down list, I am going to follow an evolutionary approach (simple code to more complex, while explaining my thought processes along the way) and hopefully end up with something useful.

PHP  

Angular 1.x Minification

January 17, 2017 by Christoff Truter

Undoubtedly if you've ever worked with an Angular 1.x project and attempted to minify your project, you would have ran into some difficulties.

JavaScript   Angular