all the check boxes do have the same name, but different vaules.
plus there is not just the one form object. there is more, such as
description - hidden feild
price - (checkbox)
quanity - text feild
right now i just have a prityt basic form set up.
<input name="x_Description" type="hidden" id="x_Description" value="55025 ">
<input name="x_Amount" type="checkbox" id="x_Amount" value="29.71">
<input name="amount" type="text" id="qty3" size="2" maxlength="2">
and on the page that processes and checks it all, i have this.
(im not gonna put the whole page, as there is alot there. im only gonna put the part i think matters.)
<HTML>
<HEAD>
<TITLE>Order Form</TITLE>
</HEAD>
<BODY>
<H3>Final Order</H3>
<?
$x_Description = $HTTP_GET_VARS['x_Description'];
$x_Amount = $HTTP_GET_VARS['x_Amount'];
$qty = $HTTP_GET_VARS['qty'];
// *** IF YOU WANT TO PASS CURRENCY CODE do the following: ***
// Assign the transaction currency (from your shopping cart) to $currencycode variable
if ($x_Description == "")
$x_Description = $HTTP_POST_VARS['x_Description'];
if ($x_Amount == "")
$x_Amount = $HTTP_POST_VARS['x_Amount'];
?>
Description: <?= $x_Description ?> <BR />
Quantity : <?= $amount ?> <br />
Total Amount : <?= $x_Amount *$amount ?>
any help would be much appreciated.