Hi

my problem :
i have to pass the price, and part number which i get from the database to
the shopping cart so when i select some
of the items by checking the checkboxes and submit the form i get only the
last item in the list

i use hidden variables to pass these values to shopping cart.

my code look like this:

echo "<TD><input type=\"checkbox\" name=\"product[]\"
value=\"$product_id\"></TD>";
echo "<TD><input type=\"text\" size=\"2\" name=\"quantity[$part_number]\"
value=\"1\"  >";
echo"</TD>";
echo "<input type=\"hidden\" value=\"$part_number\" name=\"part_number\"/>";
echo "<input type=\"hidden\" value=\"$discount_price\"
name=\"discount_price\"/>";




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to