Simple question and i want simple answer. I'm using PDO prepared statements to make sure my data are safely processed to the database. But im confused. Do i have to disable magic quotes or use stripslashes on variables if magic_quotes are enabled. And after then letting the PDO do the security job ?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If you are using PDO's prepared statements to insert data into your database, the data will go into the database exactly as you insert it. magic_quotes adds slashes to the data: these will therefore be present in the database. This is obviously not what you want.

As you say, disable magic quotes or, if necessary, use stripslashes.

link|improve this answer
So i have to use stripslashes and then let the pdo prepared statements do the security job ? – aygeta Nov 19 '11 at 13:10
PDO prepared statements (if used correctly) will prevent SQL injection, yes. There's more to "security" than just preventing SQL injection, however... – lonesomeday Nov 19 '11 at 13:11
Thanks. I would like to know that more thingy i have to learn. Can you recommend a good book about php security. I know those null bytes sql injection XSS session hijacking etc Are you saying there is much more. So far my code is clean I use object oriented programming. Everything is in classess and objects. But im still scared. Security is important – aygeta Nov 19 '11 at 13:14
I'm just saying that all PDO prepared statements will do is protect against SQL injection. – lonesomeday Nov 19 '11 at 14:16
feedback

Your Answer

 
or
required, but never shown

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