31,963 reputation
53774
bio website 127.0.0.1
location Richmond, VA
age 37
visits member for 3 years, 2 months
seen 6 hours ago
stats profile views 3,126

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?

  1. The mysql extension is deprecated, and you are a horrible programmer if you continue to use it. There have been less creaky alternatives for years. The PDO and mysqli extensions are what decent code uses.
  2. Both new extensions provide a really cool feature: prepared statements. Used right, they nearly eliminate SQL injection vulnerabilities with very little effort.

    $db = new PDO(...);
    $stmt = $db->prepare('
        SELECT some_stuff
        FROM some_table
        WHERE some_field = ?
    ');
    
    # note the ', and how i don't have to care.
    # `execute()` will escape it automagically. 
    $stmt->execute(array("this won't break"));
    
    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.


6h
comment overflow:auto breaks layout in chrome and firefox
I assume you're going to fix the site once you get your answer, making this question useless for future users. Try reducing the page to a minimal sample that still demonstrates the issue, and add that to the question.
18h
comment Handle offfsets in a function
If you don't even have code yet, it's too soon to worry about which way is fastest.
19h
revised Use string instead of “echo”?
added 37 characters in body
19h
answered Use string instead of “echo”?
1d
answered How to disable the escape sequence in C++
1d
comment A better algorithm to find the next palindrome of a number string
(1) A code dump is not an answer. Perhaps explain what you did, how it works, etc. (2) You did see that part about the number having up to a million digits, right? Ints aren't gonna work...not by a longshot.
1d
comment cannot return the exact values in php
For future reference, you generally want to have display_errors on and error_reporting cranked up on your dev site. Many people recommend having them off in production, but while you're developing, the error messages can be quite helpful.
1d
comment cannot return the exact values in php
@user2429302: PHP's database functions don't return null if everything was successful. (Hell, they don't even return nulls on error. It's pretty much always false. But that can look like null sometimes, if you're printing it.) Add a line at the top of your script that says error_reporting(E_ALL); ini_set('display_errors', true); and see what PHP tells you is wrong.
1d
comment How to extract Unique keys from a Hash Table in Javascript
And everything appears three times. Coincidence...? :)
1d
comment MySQL and PHP databases?
-0.49 for using mysql_query in 2013. Take a look at mysqli or PDO. Either one supports prepared statements, which for one thing means you don't have to do all this manual escaping crap and cobbling together SQL by hand.
1d
revised Output Explanation of this program in C?
added 75 characters in body
1d
comment How to extract Unique keys from a Hash Table in Javascript
@Philo: How many divs do you have in your document with class="hidden"?
2d
comment cannot return the exact values in php
Posting a comment as an answer is not an appropriate way around the rep requirement.
2d
comment cannot return the exact values in php
@KyleK: Not any more, it doesn't.
2d
comment cannot return the exact values in php
@user2429302: And what does the error message say? You do have error_reporting set to show notices and warnings, right?
2d
comment cannot return the exact values in php
Wouldn't that have caused the var_dump($row); to spit out bool(false) or the like, though...?
2d
revised Writing PHP Array Into Single Value
added 105 characters in body
2d
answered Writing PHP Array Into Single Value
2d
comment Writing PHP Array Into Single Value
Take a look at the first line inside your loop. $thisWhere = (some whole other value that doesn't include the results from the previous iteration); :P
2d
comment What exactly does “pass by reference” mean?
It's not undefined behavior til you try to use the reference after Foo returns, though. Even then, if Foo got that reference from its caller, it's safe. You're just taking it upon yourself to know more about the lifetime of the referent than the caller provides -- which, yeah, is a bad idea to care about in almost if not all cases. But it's possible, and the behavior is well-defined right up until the referent is destroyed.