Our Work » PHP

Contact us to learn more about how we can help you with PHP.

OVO Creative Group launched their new web site

OVO is a branding consultancy specializing in naming, visual identity and integrated marketing for organizations seeking to l…

View the project »

The One Less Flight website has been released

Miskeeto, a world-class user experience strategy and evaluation consultancy led by Robert Hoekman, Jr. recently released the …

View the project »

Convert GET and POST to objects

Here's a quick way to convert GET and POST arrays to objects with PHP: $get = (object)$_GET; echo $get->sample; $post = (obje…

View the project »

decompress gz with php

I had a lot of trouble getting zlib to work today with PHP on our Media Temple DV server, but after a lot of testing discover…

View the project »

Remove empty array values in PHP

Here's a super easy way to remove empty values from an array in PHP: $a = array_diff($a, array("")); In a recent project we w…

View the project »