I want to send my form values to a URL instead of sending them in an Email message. Can I do that?

Yes, you can. Just re-submit the values using a hidden form, right after the submit. 

To do this, go to your form's properties > Advanced Tab > More Options. Then click on the SUBMIT PIECES tab and scroll down to the END SUBMIT section.

Click on the CUSTOM radio button, and in the textarea that opens, add the following code:

 

$this->execPieceByName('ff_InitLib');
echo '
<form name="myresubmit" action="YOUR-TARGET-URL">
     <input type="hidden" name="somefield" value="'.htmlentities( ff_getSubmit('somefield') ).'"/>
     <input type="hidden" name="somefield2" value="'.htmlentities( ff_getSubmit ('somefield2') ).'"/>
     <input type="hidden" name="somefield3" value="'.htmlentities( ff_getSubmit ('somefield3') ).'"/>
     <!-- and so on ... -->
</form>
<script>
     document.myresubmit.submit();
</script>
';

exit;

(Remember to replace the 'somefield' variables with your field names!)

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!