FormBuilder: Submit to an arbitrary form action [SOLVED]
Posted: Tue Aug 03, 2010 5:38 am
Hi,
I want to send formbuilder form's values via URL (ex: http://mysite.com/somepage.html?variabl ... le2=value2)
That means I need to find a way to submit form data using the "GET" method, like this:
The problem is, I don't think it's possible to change formbuilder's default "post" method to "get" (unless I force it by replacing {$fb_form_start} with
but that doesn't please me since that way the form sends the values of all the fields.
So, I found the "Submit to an arbitrary form action" field which lets me chose between Get or Post methods, action submit page and which fields I want to include. However, it doesn't seem to work...
Can someone show me the way out?
Thanks
I want to send formbuilder form's values via URL (ex: http://mysite.com/somepage.html?variabl ... le2=value2)
That means I need to find a way to submit form data using the "GET" method, like this:
Code: Select all
<form action="somepage.html" method="get">
Code: Select all
<form id="cntnt01moduleform_1" method="get" action="http://mysite.com/index.php" enctype="multipart/form-data">
So, I found the "Submit to an arbitrary form action" field which lets me chose between Get or Post methods, action submit page and which fields I want to include. However, it doesn't seem to work...
Can someone show me the way out?

Thanks