Hi all...
I have a table with the following structure....
FIELD TYPE EXTRA
faciltiy_id int auto_increment(Primary Key)
hotel_id int
facility_title varchar(20)
facility_desc varchar(300)
When i want to delete a row with a particular facility_id i use the code....
DELETE
FROM $hotel_facilities
WHERE facilities_id = '$facilities_id'";
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...!