[snip] I have created a form that lists the possible sponsorships of various events. I need to keep the names of the checkbox to identify the specific event, but the value is a dollar amount that needs to pass thru to the checkout area function. Without creating an array that would loose the events names (some events have the same dollar amount), how can I capture the dollar value(s) checked an pass them to the checkout form? [/snip]
I don't think you explained this well, but I'll take a shot.... <input type="checkbox" name="EventFoo" value=""> When this is passed to processing via a POST event it becomes $_POST['EventFoo'] (that contains the value entered in the form, like 5 bucks) So for each event name you will have a like POST array item containing the value. Does this help? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php