can we delete two items at a time from the cart in codeigniter?? i try to delete but it is not happened. because the rowid is different for every items in the cart. Anyone Knows the solution of this problem?
can we delete two items at a time from the cart in codeigniter?? i try to delete but it is not happened. because the rowid is different for every items in the cart. Anyone Knows the solution of this problem?
收起
yes you can delete multiple items at the same time
You can set the qty to zero for multiple items https://www.codeigniter.com/userguide3/libraries/cart.html#updating-the-cart
$data = array(
array(
'rowid' => 'b99ccdf16028f015540f341130b6d8ec',
'qty' => 0
),
array(
'rowid' => 'xw82g9q3r495893iajdh473990rikw23',
'qty' => 0
)
);
$this->cart->update($data);
报告相同问题?