21,564 reputation
21541
bio website 127.0.0.1
location Richmond, VA
age 36
visits member for 2 years, 1 month
seen 14 mins ago
stats profile views 1,511

OK, i have to rant for a second. Why is it that of the thousands of posts of PHP/MySQL advice on SO, about 99.5% are still using mysql_query -- and about half of those could be the poster child for SQL injection?

It's really not that hard, y'all...

$db = new PDO(...);
$stmt = $db->prepare('
    SELECT some_stuff
    FROM some_table
    WHERE some_field = ?
');
$stmt->execute(array('some value'));

while ($row = $stmt->fetch())
{
     ...
}

I don't want to have to start calling people out on it, but seriously, prepared statements aren't just safer, they're freaking easier. Learn them or quit calling yourself a PHP programmer.


229
× 99
143
× 69
228
× 92
77
× 40
210
× 122
64
× 34
201
× 99
59
× 24
187
× 76
57
× 23
Stack Overflow Stack Overflow 21,564 rep 21541
Meta Stack Overflow Meta Stack Overflow 854 rep 111
Code Review Code Review 685 rep 18
Super User Super User 416 rep 24
Server Fault Server Fault 293 rep 18
all time   by type   month   week   day
1,308 up 453 question 2 2 2
340 down 1,195 answer