Quote:
Originally Posted by MrApples
Anyone have a link to, or have in mind a list of the basic PHP must knows when it comes to security? I'm not even sure what 'injections' are but I know they have something to do with forms.
|
Injections are not "really" php, but SQL.
A rather simple way of understanding what a SQL injection is:
http://xkcd.com/327/
Basically it comes down to never trusting the user, meaning having a very strong filter in between anything they can input and what gets sent to the database.