in reply to MySQL Double Quotes Problem(")

use my $quotedString = $dbh->quote( $string ); to take care of quotes.So
my $quoted_editpage = $dbh->quote($editpage); $sth->execute($quoted_editpage,$uid);
All the best! :-)

Replies are listed 'Best First'.
Re^2: MySQL Double Quotes Problem(")
by chromatic (Archbishop) on Dec 20, 2005 at 07:36 UTC

    He's already using placeholders.

    I think everyone needs to see more code to be able to diagnose more effectively. I can't see any reason this oughtn't work from the code posted. Perhaps there's something going wrong in the output routine.