PHP MySQL Delete Record

PHP mysql_query() function is used to delete record in a table. Since PHP 5.5, mysql_query() function is deprecated. Now it is recommended to use one of the 2 alternatives.

  • mysqli_query()
  • PDO::__query()

PHP MySQLi Delete Record Example

Example

Output:

Connected successfully
Record deleted successfully
Next TopicPHP MySQL SELECT




Contact US

Email:[email protected]

MySQLi DELETE
10/30