regindk Posted December 30, 2006 Share Posted December 30, 2006 Ok, I've made a list of common PHP mistakes I got then points so far... Praticly these are based on my own subjective opinion. However I'd like to hear your inputs... I won't post the full list untill I got some input (I don't want to influence your input too much)!Well the two first (I think) are pretty clear:1: Not escaping entities.2: Not escaping sql input.Now let me hear your opinions!!! :D Link to comment https://forums.phpfreaks.com/topic/32295-i-am-making-a-list-of-common-php-mistakes-and-i-need-your-opinion/ Share on other sites More sharing options...
Kairu Posted December 30, 2006 Share Posted December 30, 2006 Personally I believe the most common for new users is forgetting either a semi-colon, or one of these { } (Can't remember what they are called o.0) Link to comment https://forums.phpfreaks.com/topic/32295-i-am-making-a-list-of-common-php-mistakes-and-i-need-your-opinion/#findComment-149902 Share on other sites More sharing options...
ki Posted December 30, 2006 Share Posted December 30, 2006 nah its the echo thingkids get the feeling they can do:[code]echo "hi these are "quotation marks" see?";[/code]when it should be[code]echo "hi these are \"quotation marks\" see?";[/code]and also people ending the code with ; Link to comment https://forums.phpfreaks.com/topic/32295-i-am-making-a-list-of-common-php-mistakes-and-i-need-your-opinion/#findComment-149905 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.