Forum Moderators: coopster
(Payment Page URL)
[2checkout.com...]
and i have a html form having fields sid cart number and total. I want to pass these value to the URL specified above.
I m using PHP script to send the form value to my email address. i want some one to help me out in this so that i can send the values of the form to my email address and the next page that appears after the user clicks send button on my form is the payment page ( above URL)
if you use method='get' in your form and then that url you posted as the action it should append the form values to the url.
Another option is to have the user input the values, post those values to a script, append them to the above url and then use the header function to redirect them to the constructed url.