Category Archives: PHP

This is focused on the PHP language

The PHP Switch Statement

The PHP switch statement is a good substitute for a lot of “if, “else”, and “elseif” statements. The switch statement is much more efficient than the “if”, “elseif” statements, however there are some quirks that you should be aware of … Continue reading

Posted in PHP | Leave a comment

PHP array_push, and other array manipulators

Every once and a while I like to take a closer look at a particular function that I use quite frequently. This let’s me make sure I’m using that particular function to the best possible effect. I find it also … Continue reading

Posted in Sorting Arrays | Leave a comment

PHP Tools

Happy New Year!  For the start of the new year, I thought I’d review some of the PHP tools you should be learning, and using, to up your game in the coming year. One of the challenges of a technical … Continue reading

Posted in PHP | Leave a comment

Zend Framework 2.0.0 Beta 1 Released

The most anticipated PHP framework in a number of years, the Zend Framework 2.0 is on track for release in early 2012.  This beta release is the first in a series of beta releases that will happen approximately every six … Continue reading

Posted in PHP Frameworks | 2 Comments

The Modulus Operator

I was looking through my JavaScript operators the other day and came across the modulus operator.  The modulus operator is used in almost all programming languages, and usually it is represented by a “%” sign.  It performs what is called … Continue reading

Posted in JavaScript, PHP, Web Development | Leave a comment