Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
GPNET #1
Pass Multiple Selections?
We have a form ( [url]http://www.gpnet.biz/quote/quote.htm[/url] ) that has several
multi selection lists. We're also using formmail.php to process the form
and send the results to our email. Now here lies the problem; if I make
multiple selections on any of the lists only one selection comes through to
the email. For example choosing 10 languages only sends through 1. I'm
obviously not a programmer so is there any simple method to help with this
issue? I realize I could use checkboxes, but assuming we stay with the same
elements what are my options? Thank you for your help :-)
GPNET
GPNET Guest
-
datagrid multiple selections
How do i go about dealing with multiple selections within a datagrid? Any tutorials or examples. Thanks Dave -
Multiple Selections
I have a multiple dropdown which have multiple selection. If I select multiple value on my multiple dropdown list and submit it,how can i write... -
HTTPService with multiple selections?
I have a form with a list of criteria that I need to send to the server for processing. Does anyone know how to send it with an HTTPService ? I have... -
Charting Multiple Selections in dataGrid
I'm stumped. I want my chart to add a series for each row selected from a corresponding dataGrid. I've used the Series Selection example (under... -
Multiple Selections from combo box
I have a memo field I would like to populate like a combo box. However I would like to be able to make several choices from the list to populate... -
-Rb #2
Re: Pass Multiple Selections?
"GPNET" <mygpnet@hotmail.com> wrote in message
news:c5jh77$1sf$1@forums.macromedia.com...The documentation for formmail.php gives the following example:> We have a form ( [url]http://www.gpnet.biz/quote/quote.htm[/url] ) that has several
> multi selection lists. We're also using formmail.php to process the form
> and send the results to our email. Now here lies the problem; if I make
> multiple selections on any of the lists only one selection comes through to
> the email. For example choosing 10 languages only sends through 1. I'm
> obviously not a programmer so is there any simple method to help with this
> issue? I realize I could use checkboxes, but assuming we stay with the same
> elements what are my options? Thank you for your help :-)
>
> GPNET
>
>
To add multiple selection fields simply append a "[]" to the end of a field
name.
ie: (for multiple selection fields)
<select name="multi_field[]" size="3" multiple>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
<option>Option 4</option>
<option>Option 5</option>
</select>
Note: This feature was added in version 4.0
HTH
-Rb
-Rb Guest



Reply With Quote

