Hello
and
Start
Connect
Select
Update
Insert
Delete
Code example - Delete
try{ $query = $pdo->prepare("delete from address_book where id = :id"); $query->execute(array( ':id' => $delete_id )); $update_message = "Data successfully deleted in the database table ... "; }catch(PDOException $e){ $update_message = "Failed to delete the MySQL database table ... :".$e->getMessage(); }
Action
––>
No action taken