$query = "DELETE FROM table WHERE id='1'";
myql_query($query);
That does the trick in my projects g.
You can modify the WHERE-statement depending on which row you want to delete, for example if you want to delete Tom from your contact-table:
$query = "DELETE FROM contacttable WHERE name='Tom'";
This would delete all Toms from your table!!!!