-
Recent Posts
Recent Comments
- Sajib on Rolling Your Own MVC: The View
- Single var pattern – Javascript | malev's blog on Responsible JavaScript: Globals
- Fiji Web Design on The Factory Pattern in JavaScript
- Bah Humbug on A Week in JavaScript Patterns: Self-invocation
- JavaScript Patterns, A Book Review « Room Full of Mirrors on A Week in JavaScript Patterns: Self-invocation
Archives
- February 2010
- January 2010
- November 2009
- October 2009
- June 2009
- May 2009
- February 2009
- January 2009
- October 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- March 2007
- January 2007
Categories
Meta
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
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
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