$Product_ID_cart = $_POST['Product_ID'];
$short_desc = $_POST['short_desc'];
$style_ID = $_POST['style_color'];
$price_ID = $_POST['qty_rice'];
$parts = $_POST['parts'];
I need to insert them into a session array (which will act as a cart) and I am having trouble with the syntax of creating a session array and incrementing the values so that I can add, edit, and delete products. please help me find appropriate code snippets, or give me an example that can be applied.
Thank you!