im developing php and data base driven system for track courier service. i created other pages corectly. but no idea how to create delete selected recodes at once.need serious help to do want delete all the data in selected recode and wan to know how to select recode to delete.need help asap Thanks
If it is a record you mean when you say recode then use : DELETE FROM table_name WHERE record_id=<id>
if you want to delete multiple records then you can use DELETE FROM table_name WHERE record_id in {all the selected ids)
Don't forget or if you don't already know you can Append, overwrite etc, rather than delete, unless you need the files and tables literally removed.