I have question about the SESSION array.
I just add item and qty in different session. I use code like this :
$_SESSION['idproduct'] = $id.",";
$_SESSION['qtyproduct'] = $qty.",";
I have write the condition so the value of session will be like this if we add 3 item :
$_session['idproduct'] = 1,4,6,
$_session['qtyproduct'] = 3,4,5,
my question is how to update quantity if i have get the id ?