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.
$sth = $dbh->prepare("delete from table_1 where some_id = ?"); $sth->execute(1234); $sth->execute(undef);
Less worry about quotes.
|
|---|