PHP Mysql delete Query not working properly

前端 未结 3 1890
逝去的感伤
逝去的感伤 2021-01-22 05:24

I am pulling a list of products from my MYSQL database and using a delete button against each product in case the operator wants to delete the product.

The problem is th

3条回答
  •  抹茶落季
    2021-01-22 05:57

    Check prod_id is auto incrementing properly or not in your table. Another thing is as your form is in loop the id for all forms will be duplicated. So each time it is submitting first form, thats why only first product is deleted from your record.

提交回复
热议问题