Possible Duplicates:
How to Prevent SQL Injection?
Best way to stop SQL Injection in PHP
Are Parameters really enough to prevent Sql injections?
Sorry if this seems like a repost, but I found different opinions everywhere and was trying to put it in one spot for PHP/SQL environments
- Stored procedures ?
- Paramaterized queries/Prepared statements ?
- Placeholders in SQL ?
I've already run through a bunch of questions on S.O. and they all seem like worthwhile approaches, but which is the best for preventing SQL injections?
Is it one single approach, a combination of two, or all three?
Are there any more things I should consider implementing? PHP functions? Regex?
My environment includes Apache, PHP, and MySQL (and phpMyAdmin if anyone knows of methods of blocking available there)
This is under the assumption that the connected database user has only select, insert, and update rights
