Hi I have a simple form with a dynamic drop down, which is working great
Once the user selects and item from the drop down, and presses the submit button, I am trying to send them to the next form passing the value of their selected items to the token url parameter
here is the forms url
Here is the redirectuser text
if I hard code a token value it works
what is the syntax for getting the value of the drop down named input_select_4 ?
Thanks in advance for your assistance
Dean-O
Once the user selects and item from the drop down, and presses the submit button, I am trying to send them to the next form passing the value of their selected items to the token url parameter
here is the forms url
<div id="main">
<div id="system-message-container"></div>
<form action="http://localhost:8888/pigskin/index.php?option=com_chronoforms&tmpl=component&chronoform=Buttons_Main_Menu&event=submit" name="Buttons_Main_Menu" id="chronoform_Buttons_Main_Menu" method="post" class="Chronoform">
<div class="ccms_form_element cfdiv_select" id="autoID-441c323485a8fbde2faedc74a59a7431_container_div" style="">
<label>Select An Option</label>
<select size="1" class="" title="" container_id="0" name="input_select_4">
<option value="1">Bar</option>
<option value="2">Car</option>
<option value="3">Bus</option>
<option value="4">General</option>
</select>
<div class="clear"></div>
<div id="error-message-input_select_4"></div>
</div>
<input type="hidden" name="3212360ca5ffd4d221f3f1360014b2e8" value="1" /></form>
Here is the redirectuser text
index.php?option=com_chronoforms&chronoform=next_page&token={input_select_4}
if I hard code a token value it works
index.php?option=com_chronoforms&chronoform=next_page&token=3
what is the syntax for getting the value of the drop down named input_select_4 ?
Thanks in advance for your assistance
Dean-O