Hi,
If are wanting to delete a row from the name given in the form you can do the following in your SQL
PHP Code:
mysql_query ( "DELETE FROM particulars WHERE name='". $_POST['name'] ."' ");
Where $_POST['name'] is the input field in your form.
If the user inputs a name that the db cannot find it will not delete any thing.