Hi all
I have a list of products on one page (in a loop) each with hidden fields as such:
echo "
Quantity: <input name=\"quantity[]\" type=\"text\" class=\"quantitybox\" />
<input name=\"productprice[]\" type=\"hidden\" value=\"$price\">
<input name=\"productname[]\" type=\"hidden\" value=\"$productname\">
<input name=\"product[]\" type=\"hidden\" value=\"$productid\">";
Can someone help with the next step which when I have submitted my form I need to add all products that have a value typed into the quantity field to a session array (which I will use later on in the basket page)
Any help of code snippets would be immensly helpful.
Thank you.