Category Archives: PHP

Come See Me Talk this Saturday

I will be giving a talk on Flex and PHP development for my PHP user group this Saturday. If anyone is interested, please feel free to show up. This talk will be a very light one with the goal of … Continue reading

Posted in News, Personal Life, PHP | Comments Off

Come See Me Talk This Saturday

If you’re in the area, come out to DeVry University and see me present at the next Central Florida PHP meeting. I’ll be giving a talk on web services in PHP 5 called “Creating and Consuming Web Services in PHP … Continue reading

Posted in PHP | 1 Comment

A Divine Framework

[code lang="php"]name = $name; } public function __toString() { $out = "Hello there. I am $this->name. "; if($this->health > 0) { $out .= "I am healthy. "; } else { $out .= "I am sick. "; } if($this->abundance > 0) … Continue reading

Posted in Code, Humor, PHP | Comments Off

ImageModifier: A PHP Thumbnail Generator

If you have ever written a web application that allows users to upload images, you have encountered the need for automated thumbnail generation. Here’s my version. I’ve placed a few static methods at the top to simplify the process a … Continue reading

Posted in PHP | 5 Comments