faqts : Computers : Programming : Languages : PHP : Database Backed Sites : MySQL

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

25 of 45 people (56%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

How do you delete a row using PHP code in a MySQL Database?

Apr 19th, 2002 09:19
Alex Dean, Stephen Edmonds,


<?php
//first establish a connection to mySQL, then...
$query = "DELETE FROM table WHERE condition";
mysql_query($query) or die(mysql_error());
?>