Recent Comments
- Roger Cody Venable on MySQL Upgrade To 5.1: Database Name Prefix #mysql50#
- Sharon Cote on Disappearing Bottom Panel & Top With Firefox + Linux Mint
- Pratik on Install GD Library For PHP5 On CentOS
- Compiling, Running and Cursing on Chromium OS – Getting It To Work ~ Mattias Geniar on Chromium OS: error: RPC failed; result=22, HTTP code = 502
- Lovelesh on Simple Apache Security Trick – ServerTokens & ServerSignature
- No need on VMware: internal error – vmodl.fault.HostCommunication
Monthly Archives: January 2009
I’m Attending MIT, Stanford & Harvard
Well, sort of. Thanks to Academic Earth, a friggin’ gift, you can follow (video) lectures given at universities like Stanford, MIT, Harvard & Yale on some of the most popular subjects. There once was a time when you couldn’t wait … Continue reading
PEAR:: Classes Worthy Of Attention
PEAR offers an excellent framework for re-usable PHP components. A wide range of PEAR classes is available, from XML Parsers to Captcha’s and Mail components. They’re all easy to install, and have extensive documentation available so you can get started … Continue reading
Install New PEAR Packages From The Linux CLI
I previously wrote about how to Enable Pear Packages when using Plesk, here’s how to do it when you run your own LAMP stack. First up, see if the PEAR management tool is already installed (theĀ command pear should be … Continue reading
Error Handling In PHP’s PDO
With last weeks explanation on how to handle errors & exceptions in PHP5, it’s time to advance in this area. Using PHP’s PDO (PHP Data Object), you can create powerful database-driven applications. Portable, and more secure. It allows you to … Continue reading
Method Chaining In PHP – Fluent Interface
The technical definition of “Fluent Interface”, as defined by Wikipedia, is: “An object oriented construct that defines a behavior capable of relaying the instruction context of a subsequent call.“. It’s just as sexy as it sounds. In short: any Object … Continue reading