From the bottom up
   You have to start some where

Archive for the 'Web Development' Category

PHP’s implode() in MySQL

Thursday, November 12th, 2009

Here is a quick tip, to get similar result as php’s array implode function inside of MySQL use GROUP_CONCAT() here is a quick example

SELECT store_orders.*,
(SELECT GROUP_CONCAT(item_name) FROM `store_orderitems` WHERE store_orders.id=store_orderitems.order_id) AS items_purchased
FROM `store_orders`

Mysql Drivers/Extensions: mysql_ is out, use mysqli_ or pdo

Tuesday, November 10th, 2009

Here is a good article on mysql_ vs mysqli vs pdo, its cleraly stated that mysql_ should no longer be used.

Which PHP Driver for MySQL should I use

Free Webcasts

Thursday, July 16th, 2009

http://www.phparch.com/conferences/webcasts

With recordings of past webcasts.

Thanks PHP Architect

Food for Thought: Software Engineering In PHP

Friday, May 15th, 2009

Some slides to think about

PHPAustin Meetup Slides - Software Engineering In PHP

Article explaining Dependency Injection

Thursday, March 26th, 2009

What is Dependency Injection? - Fabien Potencier

jQuery Plugin Tutorial

Thursday, March 12th, 2009

http://webcloud.se/article/Building_jQuery_plugins

Hahahaha

Monday, March 9th, 2009

http://www.phpro.org/examples/PHP-Bullshit-Meter.html

Free Book - Zend Framework: Surviving The Deep End

Monday, January 12th, 2009

Zend Framework: Surviving The Deep End

Holiday Project

Tuesday, December 9th, 2008

The Jobeet Tutorial

Good Article: Build seven good object-oriented habits in PHP

Monday, November 3rd, 2008

Here is a good article from IBM DeveloperWorks on some good object oriented principles to follow
Build seven good object-oriented habits in PHP