Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Submitting form and redirecting according to button

Status
Not open for further replies.

Bravogolf

Programmer
Nov 29, 2002
204
GB
Hi all,
I'm rather stuck on this form here.
Basically, I have a form and want to be able to have three paypal buttons (that already have a form action attached) that can be used as the submit action (rather than the submit button).

So, for example, the user fills in the details and clicks the second button. The second button sends me the information in an email and then performs the form action attached to the it (which loads a paypal page with some content in it).

Any ideas?
 
Sounds like you can do the whole thing in HTML without any problems!

Show us the code you have been working on and I'm certain we can help you when you get stuck.

Cheers,
Jeff

[tt]Jeff's Page [/tt][tt]@[/tt][tt] Code Couch
[/tt]
 
Excellent, thank you!

So see in the code below I have a form to send the details (example at I then have seperate buttons for paypal. I want to submit the form and load the paypal page in after I click the paypal button :)

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body leftmargin="0" topmargin="0" bgcolor="#B691CE" marginheight="0" marginwidth="0" text="#ffffff">


<form action="formmail.asp" method="post" name="form1">
<font size="2" color="#3F0067" face="Trebuchet MS">
				<input name="_recipients" type="hidden" value="BravoGolf@gmail.com" />
				<input name="_requiredFields" type="hidden" value="Name,Email,Comments" /> 
				Your Name:<br> <input type="text" name="Name" value="" size="30">
            <br>
            	Your e-Mail:<br><input type="text" name="Email" value="" size="40">
            <br>
            <br>
            Song details:<br><TEXTAREA NAME="Comments" ROWS=5 COLS=50></textarea>
           
            <br>
            <br>
            <input type="submit" value="Send">

          </form>



<font size="2" color="#3F0067" face="Trebuchet MS">Bobson's Gold Selection (48 hours)<b> £6.50 </b><form action="[URL unfurl="true"]https://www.paypal.com/cgi-bin/webscr"[/URL] method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="[URL unfurl="true"]https://www.paypal.com/en_US/i/btn/x-click-but23.gif"[/URL] border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">

<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhvcN...iiz5/EA==-----END PKCS7-----
">
</form>
<p>
<font size="2" color="#3F0067" face="Trebuchet MS">Bobson's Silver Selection (5 days) <b> £4.00 </b><form action="[URL unfurl="true"]https://www.paypal.com/cgi-bin/webscr"[/URL] method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="[URL unfurl="true"]https://www.paypal.com/en_US/i/btn/x-click-but23.gif"[/URL] border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">

<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhvcNAQcE...tiEAoMZnkSLdA==-----END PKCS7-----
">
<p>
<font size="2" color="#3F0067" face="Trebuchet MS">Bobson's Bronze Selection (2 weeks) <b> £0.50</b><p><form action="[URL unfurl="true"]https://www.paypal.com/cgi-bin/webscr"[/URL] method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="[URL unfurl="true"]https://www.paypal.com/en_US/i/btn/x-click-but23.gif"[/URL] border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">

<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHXwYJKoZIhv...O6W74W+BOOOHyZZw==-----END PKCS7-----
">
</form>



</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top