My form has a drop-down list with several choices. Once they have filled in all the fields on the page and click SUBMIT, I want to redirect the user to another web page based on the choice they made in the drop-down list. Is this possible?

Create a select-list as you would normally. For this example, we'll name it 'pick,' and give it the following variables: 

0;First Choice;value1
0;Second Choice;value2
0;Third Choice;value3 

Save your element properties, then save your form.

Now go to your form's properties > Advanced tab > More Options > Submit Pieces tab. In the END SUBMIT section, click on the "Custom" radio button. In the text area that opens, enter the following code: 

$this->execPieceByName('ff_InitLib');
$value = ff_getSubmit('pick');
switch( $value )
{
     case 'value1': header('Location: http://crosstec.org'); exit;break;
     case 'value2': header('Location:http://crosstec.org/forums.html'); exit; break;
     case 'value3': header('Location:http://crosstec.org/support/getstarted');exit; break;
}

In the $value line, change 'pick' to the name of your select-list element. 

In the 'case' lines, change 'value1', 'value2', and 'value3' to the values of your select-list choices, and then change out the location URLs for whatever URLs you want to redirect to. 

Click the SAVE button at the bottom of the screen, and then click on the SAVE icon in the upper right-hand corner of the screen to save your form.Upon submit, they will be taken to the URL based on the choice they made.

Special Offer

Sale! All subscriptions at a special price!

Includes prio support, all of our current and future Joomla!® extensions and Joomla!® templates for the duration of your membership.

Get it from here

3rd Party Discount - 25% Off

We help you to keep your costs under control. If you are a new member and purchased a form building tool from a different form vendor, then you'll get a 25% discount on our subscription plans.

How to receive the discount:

Send us a quick email to sales@crosstec.org with a proof of purchase (for example a paypal receipt), await payment instructions and enjoy your membership!