|
| A R C H I V E D M E S S A G E |
|
Subject: Multiple thank you pages depending on radio button? |
| Posted: 04/08/2004 at 8:48:05 pm |
| By: santino |
| I'm trying to have the form take the individual to a different "Thank you page" depending on what the form consists of. For example, it they select "PayPal", when they click submit they will be taken to the paypal signup page. However, if they click "StormPay", they will be taken to a stormpay signup page. Does anyone know how to do this? I'm straining my brain! :) | |
|
|
Subject: Re: Multiple thank you pages depending on radio button? |
| Posted: 04/09/2004 at 6:27:43 am |
| By: Seth Knorr |
| <input type="radio" name="success_page" value="http://www.yourdomain.com/paypal.html"> Pay Pal
<br>
<input type="radio" name="success_page" value="http://www.yourdomain.com/stormpay.html"> StormPay
<br>
<input type="radio" name="success_page" value="http://www.yourdomain.com/other.html"> Other
<br>
Just try something similar to what is posted above.
Seth | |
|
|