I have following code to post the variables to a online payment processing URL. Following code works great but the problem is Payment processing company want us to use two URLS - one for Credit card and other for Checks.
Difference between tow URLS - besides URL a payment indicator "PMT_INDICATOR= "C" passed to "'https://ww.somebank.com/PayPost/399/Gateway.aspx' ID="Form1">" url and ""PMT_INDICATOR= "D" is passed to "'https://ww.somebank.com/PayPost/400/Gateway.aspx' ID="Form1">". C is for credit and D is for Debit.
So all i want is a field (dropdown) is OK. If they select Credit then change PMT_INDICATOR to C and post to "'https://ww.somebank.com/PayPost/399/Gateway.aspx' ID="Form1">" or if they select Check then change PMT_INDICATOR to D and post to "'https://ww.somebank.com/PayPost/400/Gateway.aspx' ID="Form1">" else ask them to select one.
Is this possible? Any help or quidence is higly appriciated.
sa
Difference between tow URLS - besides URL a payment indicator "PMT_INDICATOR= "C" passed to "'https://ww.somebank.com/PayPost/399/Gateway.aspx' ID="Form1">" url and ""PMT_INDICATOR= "D" is passed to "'https://ww.somebank.com/PayPost/400/Gateway.aspx' ID="Form1">". C is for credit and D is for Debit.
So all i want is a field (dropdown) is OK. If they select Credit then change PMT_INDICATOR to C and post to "'https://ww.somebank.com/PayPost/399/Gateway.aspx' ID="Form1">" or if they select Check then change PMT_INDICATOR to D and post to "'https://ww.somebank.com/PayPost/400/Gateway.aspx' ID="Form1">" else ask them to select one.
Is this possible? Any help or quidence is higly appriciated.
sa
<form name="transfer" method="post" action='https://ww.somebank.com/PayPost/399/Gateway.aspx' ID="Form1">
<input type="hidden" Value ="Account Balance" name="PMT_TYPE_DESC" >
<input type="hidden" Value ="C" name="PMT_INDICATOR" >
<input type="hidden" Value ="2718" name="ACCOUNT" >
<td colspan="2" align="center"><input type="submit" value="Pay Now" ID="Submit1" NAME="Submit1"></td>
</p>
</form>