I'm sorry if I'm not explaining this properly but I will do my best!
For example:
I have 2 forms, both with separate submit buttons.
<FORM METHOD="POST" ACTION=https://www3.moneris.com/HPPDP/index.php>
<INPUT TYPE="SUBMIT" NAME="SUBMIT" value="Session Fee - $200.00" />
<INPUT TYPE="HIDDEN" NAME="charge_total" value="200.00" />
<INPUT TYPE="HIDDEN" NAME="ps_store_id" VALUE="xxx" />
<INPUT TYPE="HIDDEN" NAME="hpp_key" VALUE="xxx" />
</FORM>
<FORM METHOD="POST" ACTION=https://www3.moneris.com/HPPDP/index.php>
<INPUT TYPE="submit" NAME="SUBMIT" value="Membership Fee - $15.00" />
<INPUT TYPE="HIDDEN" NAME="charge_total" value="15.00" />
<INPUT TYPE="HIDDEN" NAME="ps_store_id" VALUE="xxx" />
<INPUT TYPE="HIDDEN" NAME="hpp_key" VALUE="xxx" />
</FORM>
My question is.. How can I include both forms as either a drop down menu or a checkbox in which the customer can select either 1 or both of the options and click a final submit / pay now button.
So for example, they could select ONLY the Session Fee and the charge would come out as $200.00. Or should they choose, they can also select the Membership fee, and the charge would come out as $215.00.
Thank you in advance for your time - Much appreciated.