Nov 8th, 2011, 10:08 AM
Hi jkuruppu,
I think it's still the form type that's the problem: or you've set it up to point the form to the process.php script. The reason being, that's the only place that error gets output!
The form should have this as the form tag (or something very like it):
That will post the form to itself, which then uses the API to redirect to the next page (paypal_submit.php). So there shouldn't be any links to process.php.
Any help...? Sorry, it's never easy setting these things up (that's why I'm working so frantically on the Form Builder: no more manual creation of forms!)
- Ben
I think it's still the form type that's the problem: or you've set it up to point the form to the process.php script. The reason being, that's the only place that error gets output!
The form should have this as the form tag (or something very like it):
Code:
<form action="<?php echo $_SERVER["PHP_SELF"]?>" method="post" onsubmit="return rsv.validate(this, rules)">
That will post the form to itself, which then uses the API to redirect to the next page (paypal_submit.php). So there shouldn't be any links to process.php.
Any help...? Sorry, it's never easy setting these things up (that's why I'm working so frantically on the Form Builder: no more manual creation of forms!)
- Ben