in reply to Re: Securing DB transactions with user form input
in thread Securing DB transactions with user form input

FYI even PHP users should use placeholders (its one of my pet peve's) the code at http://us3.php.net/manual/en/function.mysql-real-escape-string.php#64194 allows you to use psuedo place holders even in PHP :)


___________
Eric Hodges
  • Comment on Re^2: Securing DB transactions with user form input

Replies are listed 'Best First'.
Re^3: Securing DB transactions with user form input
by Anonymous Monk on Feb 04, 2008 at 18:58 UTC
    I was *this* close to doing just that and rolling my own ... but, as much as I would love to use that code here at work, I just don't think my co-workers would understand. :(

    Thanks for the tip!