in reply to Re: How do I delete a string from my database and update it.
in thread How do I delete a string from my database and update it.

Using placec holders might be a little smarter.

$sth = $dbh->prepare("delete from table_1 where some_id = ?"); $sth->execute(1234); $sth->execute(undef);

Less worry about quotes.


Play that funky music white boy..
  • Comment on Re: Answer: How do I delete a string from my database and update it.
  • Download Code