corbin Posted January 24, 2010 Share Posted January 24, 2010 I started a tutorial/blog-ish type thing about common programming blunders that people new to programming make. Never finished it though x.x. Link to comment https://forums.phpfreaks.com/topic/188940-php-no-nos/page/4/#findComment-1000697 Share on other sites More sharing options...
JonnoTheDev Posted January 25, 2010 Share Posted January 25, 2010 Quote What bad practises/mistakes/misconceptions do you see time and time again - in regards to PHP? My personal favourite is a lack of standards in a script. I see code that is a complete mish-mash of the following: $VAR1 = "foo"; $myName = "Joe"; $my_surname = "Bloggs"; $NAME = $myName." ".$my_surname; function printMyName($name) { } function save_my_name($name) { } Link to comment https://forums.phpfreaks.com/topic/188940-php-no-nos/page/4/#findComment-1001215 Share on other sites More sharing options...
roopurt18 Posted January 25, 2010 Share Posted January 25, 2010 [quote]My personal favourite is a lack of standards in a script. I see code that is a complete mish-mash of the following: Well, to be fair a programmer's style changes over time. If a project is long-lived, then there is a good chance the programmer may make stylistic changes over the course of it. If the project is financially backed and not just a past-time or pet-project, then there is no budget (time or money) to bother with frivolous modifications such as the case of variables. Link to comment https://forums.phpfreaks.com/topic/188940-php-no-nos/page/4/#findComment-1001452 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.