I have a form that currently takes the user to a thank you page on submit
I would like the submit button to take them to a paypal page, if they complete the transaction the database is updated and they get sent to the thank you page, BUT if they dont go through with paypal payment it returns them to a sorry you dicided not to pertisapate page and the database doent get updated with their information from the form.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The form can be customized to do most anything but it does require some programming knowledge. Since every application is different it is impossible to provide a solution that works for everyone so the customization is up to you.
If you look at the bottom of your process.php file you will find a command that takes the user to a thank you page it looks something like this
header("Refresh: 0;url=http://yourURL.com/thankyou.htm");
Getting through the next step to return if something in PayPaal is unsuccessful is a whole "nother can o worms". Good Luck, and happy programming.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a form that currently takes the user to a thank you page on submit
I would like the submit button to take them to a paypal page, if they complete the transaction the database is updated and they get sent to the thank you page, BUT if they dont go through with paypal payment it returns them to a sorry you dicided not to pertisapate page and the database doent get updated with their information from the form.
The form can be customized to do most anything but it does require some programming knowledge. Since every application is different it is impossible to provide a solution that works for everyone so the customization is up to you.
If you look at the bottom of your process.php file you will find a command that takes the user to a thank you page it looks something like this
header("Refresh: 0;url=http://yourURL.com/thankyou.htm");
Getting through the next step to return if something in PayPaal is unsuccessful is a whole "nother can o worms". Good Luck, and happy programming.