I have a table with the following structure....\[code\] FIELD TYPE EXTRAfaciltiy_id int auto_increment(Primary Key)hotel_id intfacility_title varchar(20)facility_desc varchar(300)\[/code\]When i want to delete a row with a particular facility_id i use the code....\[code\]DELETE FROM $hotel_facilitiesWHERE facilities_id = '$facilities_id'";\[/code\]But instead of the whole row, only the facility_title and facility_desc fields are getting deleted. If I run this query directly through phpmyadmin over the table it works correctly...Can anyone enlighten me on what i am doing wrong...???Thanks a lot in advance...!