S
Sandy
Hello:
I have the following code to process info through a credit card processing service:
<snip>
<form method="POST"
action="https://someCreditCardProcessingPlace
<input type="hidden" name="DESCRIPTION" value="Some Text">
<input type="hidden" name="PARTNER" value="NameOfPartner">
<input type="hidden" name="LOGIN" value="LoginID">
<input type="hidden" name="METHOD" value="CC">
<input type="hidden" name="AMOUNT" value=SomeValue>
/FORM>
I need to put in four radio buttons; $25, $50, $75, $100 and then take the value the user selects from the radio buttons and plug it into the "AMOUNT" above.
Can anyone tell me how to do this? Any help will be greatly appreciated!
I have the following code to process info through a credit card processing service:
<snip>
<form method="POST"
action="https://someCreditCardProcessingPlace
<input type="hidden" name="DESCRIPTION" value="Some Text">
<input type="hidden" name="PARTNER" value="NameOfPartner">
<input type="hidden" name="LOGIN" value="LoginID">
<input type="hidden" name="METHOD" value="CC">
<input type="hidden" name="AMOUNT" value=SomeValue>
/FORM>
I need to put in four radio buttons; $25, $50, $75, $100 and then take the value the user selects from the radio buttons and plug it into the "AMOUNT" above.
Can anyone tell me how to do this? Any help will be greatly appreciated!