seikan / Cart

A simple PHP shopping cart class to use in ecommerce web applications.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update all Items

rasselll opened this issue · comments

Hi, I have a button for update but how can I update all items not just one?

// Update item
if (isset($_POST['update'])) {

	$cart->update($_POST['id'], $_POST['qty'], [
		'price' => $_POST['price'],
		'color' => (isset($_POST['color'])) ? $_POST['color'] : '',
		'size' => (isset($_POST['size'])) ? $_POST['size'] : '',
	]);
}