Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Php PDO::bindParam data types.. how does it work?

Could someone explain - why is prepared statement more secure:

$stmt = $conn->prepare("INSERT INTO users (user, pass, salt) 
VALUES (:user, :pass, :salt");
    $stmt->bindParam(":user", $user);
    $stmt->bindParam(":pass", $pass);
    $stmt->bindParam(":salt", $salt);
    $stmt->execute();

Insert query is firstly prepared with placeholders, then values is placed instead placeholders, but - where is that famous secure point ?

share|improve this question
1  
@YourCommonSense, I started reading your text, and must say - you're a real educational champ. Thanks a lot. – Alegro Jan 15 at 17:51

marked as duplicate by Neal, Madara Uchiha, Sheikh Heera, tereško, Jocelyn Jan 15 at 20:05

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

The values are not placed into the placeholders (depending on the backend, some do emulation but lets not talk about them, as that's not prepared statements). The issue with traditional SQL is that the commands and data are mixed. Prepared statements get around that issue by intentionally keeping them separate at all times. Prepared statements aren't just a fancy way to automatically do mysqli_real_escape_string.

share|improve this answer

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