hello
create session array.
$SESSION["System"][]=$POST[""]; //write here the $POST[] correctly...
$SESSION["Color"][]=$POST[""];
$SESSION["Logo"][]=$POST[""];
$SESSION["Voltage"][]=$POST[""];
$SESSION["Voltage"][]=$POST[""];
$SESSION["Quantity"][]=$_POST[""];
if there is a mistake in the form select, you not add 1 to that $SESSION["holder"].
if evrything is ok, you add 1 to it.
$SESSION["holder"]++;
you could do a list of the selected items, and add an option, to delete one row from that. In that case, you set a $SESSION["deleted"][$SESSION["holder"]] value into 1;
if the user click on, to order the items, you make a final list those array elements, where the deleted is 0.
i think it is enoght for you.
But i prefer the database , to store items as a CART , just add a table, the values you want to store, and a session_id ...
And you easy use the COUNT(Quantity) AS coundOfQuantity ....
hello.