Hi Bob,
Is there a way to do the following.
I need to change the submit URL depending on what value a particular variable in the form is
When $var1 ='OK' the button shown on the form = PayPal otherwise the button shown = 'Finish'.
Having the PayPal URL in the form action box works if you only want to go to Paypal. I need to be able to dictate which site the form gets submitted to and subsequently processed by.
Thoughts?
aj
Is there a way to do the following.
I need to change the submit URL depending on what value a particular variable in the form is
if ($var1=OK) submit to https://www.paypal.com/webscr........ }
else{submit to http://site1/process/processthis.php}
When $var1 ='OK' the button shown on the form = PayPal otherwise the button shown = 'Finish'.
Having the PayPal URL in the form action box works if you only want to go to Paypal. I need to be able to dictate which site the form gets submitted to and subsequently processed by.
Thoughts?
aj