pdo:delete_statements
This is an old revision of the document!
PDO - Delete Statements
<?php $stmt = $db->prepare("DELETE FROM table WHERE id=:id"); $stmt->bindValue(':id', $id, PDO::PARAM_STR); $stmt->execute(); $affected_rows = $stmt->rowCount();
pdo/delete_statements.1575238423.txt.gz · Last modified: 2020/07/15 09:30 (external edit)