PHP MySQL Delete
Deleting data.
PHP MySQL Delete Data
The DELETE statement is used to delete records from a table.
DELETE FROM table_name
WHERE some_column = some_value
Note: Be careful when deleting records. If you omit the WHERE clause, ALL records will be deleted!