vote up 28 vote down star
23

What are the worst practices found in PHP code?

Some examples:

  • Use of $array[reference] without single quotes
  • Instance "hidden" variables into inclusion files, which are needed later
  • Lots of recursive inclusion not using "_once" functions

Note: maybe subjective or "fun" if you like.

flag
1  
The worst practice of PHP has nothing to do with code, it's the low cost of entry into developing with it. This is the core source of every problem written in that language has. – marr75 Jun 19 at 16:15
show 3 more comments

33 Answers

prev 1 2
vote up 24 vote down

HTML and PHP and SQL interspersed without any discipline, resulting in an unmaintainable mess.

link|flag
2  
I tend to "mix" a lot, but I do all my logic and calculation before lines of HTML. That HTML may include lots of PHP to control formatting based on pre-calculated logic, but I'm generally good about keeping it separated. – Nicholas Flynt Oct 24 '08 at 23:21
show 4 more comments
vote up 1 vote down

Overuse of globally scoped variables in general. And, erm... using PHP ;-)

link|flag
4  
Agree with overuse of scoped variables. Disagree STRONGLY with the bash of PHP, I don't think I would use anything else if given a choice as the backend for my websites. – Nicholas Flynt Oct 24 '08 at 23:29
show 2 more comments
vote up 37 vote down

How about Magic Quotes? So evil they've been removed from PHP6.

link|flag
18  
Yes, it was like a seatbelt...fastened around the neck. – micahwittman Oct 26 '08 at 8:57
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.