May 26th, 2009 by Eric
Recently when browsing past issues of php|architect magazine, I came across mention of a Firefox add-on called FirePHP. For those who have not heard of it, FirePHP is both a Firefox add-on and a PHP library used to send messages to the Firebug console.
March 30th, 2009 by Eric
About two years ago I read of an emerging ORM-solution called Propel. Having just finished my first full readthrough of PHP 5 Object, Patterns, and Practice by Matt Zandstra, I was eager to research object relational mappers that differed from the one used in that book. My experience was one of major disappointment. After spending [...]
March 2nd, 2009 by Eric
When developing a web application using PHP, it is important to follow best practices for optimizing memory usage, database access, and file sizes. All these thing taken into account for, you will likely still find parts of an application to be bulky, or you may find repeated data calls an unnecessary overhead. When you need [...]
February 22nd, 2009 by Eric
With PHP becoming a bigger player in the realm of enterprise web application design, there are several questions that the PHP developer must ask his/herself. One such question is licensing, and whether or not an application should be open or closed source.
Since PHP itself is an open source project, the vast majority of products released [...]
February 15th, 2009 by Eric
While PHP Frameworks have become quite popular with web developers over the last two years, they have their drawbacks. They can be bulky and/or bloated, bringing the simplest of tasks into a fold of dependencies and data calls. They can be difficult to administrate remotely – if you use a shared host, some command-line configurations [...]
February 10th, 2009 by Eric
HTML_QuickForm is a very popular PEAR library that eases form design for the web programmer. It consists of three separate but equally important parts – form components, form renderers, and form validators. The last of these three is the focus of this week’s tutorial.
Web programmers always have to be considerate of the security risks involved [...]
November 21st, 2008 by Eric
These past 3 months have been very exciting for me – I started a new job in Web Development working with a commercial open-source CMS by a company named NStein. We are currently in the 3.x branch of their software, aptly named WCM (Web Content Management…how creative…) 3.x is very extendable, but its out-of-the-box functionality [...]