Website review: The PHP coders top 10 mistakes and ...
RGDK discovered this in PHP
•5 reviews since Jan 6, 2007
php
•sourcerally.net/regin/8-The-PHP-coder%27s-top...
People who like this website

- onitek
Los Angeles

- davediamondprovo
Monrovia

- Meticlan
California

- johnrobertlemon
California

- zonalnet
Nevada

- jayapoo
San Jose

- parthpatil
Sunnyvale

- pchengsf
Fremont

- steve02124
Oakland

- alexko
San Francisco
StumbleUpon is the best way to discover great web sites, videos, photos, blogs and more - based on your interests.
Everything is submitted and rated by the community. Discover, share and review the best of the web!
Reviews of this website

RGDK discovered 18 months ago- Well, I'm quite happy about the article/opinion... different people different opinions. Toqom mention the things about long lists of classes: it's really not a problem in PHP5 if you use __autoload() that is!!!!! Just a quick not... I'm the blogger of the article

deadlydud rated 17 months ago- dont use globals in functions, dont overdesign. keep it simple.

TechSiddhu rated 18 months ago- From the page: "Seeing the number of problems and mistakes PHP coders encounter repeatedly I set out to make this list of the 10 most common problems and mistakes done by PHP coders."

bassul rated 18 months ago- If you're a PHP programmer, read this, maybe you missed something. Make your code a safer place...

- Toqom rated 18 months ago
- This isn't the best list of php security. The guy mentions using a framework and while it CAN help you, it teaches you to use the framework more than PHP. What if the framework drops off and stops being developed, you now have to update EVERYTHING since the outdated framework can now become a security risk. Also on Object Oriented, yes it CAN make your code more manageable but a smart developer can easily make his code structure clean enough to be as updatable as OOP. The issue with OOP is typically a developer will include the class on pages they don't even use it. Add up a few thousand hits a day and your system resources go to shit from all these classes being included when they aren't needed.