vote up 0 vote down star

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

flag

64% accept rate

closed as exact duplicate by Ólafur Waage, David Dorward, gahooa, porneL, Mark Rushakoff Sep 13 at 20:06

3 Answers

vote up 1 vote down check

Preventing SQL Injection with PHP

use

mysql_real_escape_string()

for further information visit link

link|flag
vote up 3 vote down

use placeholders!

link|flag
vote up -1 vote down

Pass any user input thru mysql_real_escape_string before inserting it into the database

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.