If you've got the itch, use Blane's handy how-to to configure your own OS X system for localhost Web development. Covering setup for Apache, Perl, PHP and MySQL, this guide is a must-read for those launching into development on OS X.
- Mike Sheetal
one of the most common css hack is a box model hack to get over the broken box model in IE5. It’s a parsing error hack, most of which is to fool different browsers into seeing the hack or not.
- Mike Sheetal
PHPBuilder.com, the best resource for PHP tutorials, templates, PHP manuals, content management systems, scripts, classes and more. - http://www.phpbuilder.com/columns...
If you search the forum there are many good threads with rules about debugging. The single most important thing you can do is ask PHP to report errors and notices to you by adding this line at the beginning of your scripts: error_reporting(E_ALL);
- Mike Sheetal