| 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.
|
|
Stack Overflow | 21,564 rep | 21541 |
|
|
Meta Stack Overflow | 854 rep | 111 |
|
|
Code Review | 685 rep | 18 |
|
|
Super User | 416 rep | 24 |
|
|
Server Fault | 293 rep | 18 |
This user has no active bounties
| all time | by type | month | week | day | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| 1,308 | up | 453 | question | 2 | 2 | 2 | ||||
| 340 | down | 1,195 | answer | |||||||