Possible Duplicates:
How do you prevent SQL injection in LAMP applications?
Best way to stop SQL Injection in PHP
how i can prevent SQL injection in php and mysql ?
for example if use ' or "" or 4==4
Thanks
|
|
how i can prevent SQL injection in php and mysql ? for example if use ' or "" or 4==4 Thanks
|
||||
|
closed as exact duplicate by Ólafur Waage, David Dorward, gahooa, porneL, Mark Rushakoff Sep 13 at 20:06 |
|
|
|
||
|
|
|
|
use placeholders! |
||
|
|
|
|
Pass any user input thru mysql_real_escape_string before inserting it into the database |
||
|
|