in reply to Re: Re: Converting Special Characters
in thread Converting Special Characters

When inserting data into a db you should use $dbh->quote($var) for correct quoting.
  • Comment on Re: Re: Re: Converting Special Characters

Replies are listed 'Best First'.
Re: Re: Re: Re: Converting Special Characters
by bart (Canon) on Oct 08, 2002 at 10:10 UTC
    When inserting data into a db you should use $dbh->quote($var) for correct quoting.
    Not when using placeholders, as he does now.