jacobcane
10-07-2004, 03:08 PM
<select multiple size="8" name="activities" tabindex="6">
<option value="item one">item one</option>
<option value="item two">item two</option>
</select>
On the form handler page which this form action goes to, I am sending an email using php. The part of the message that using the 'activities' variabler looks like this.
$message .= "Activities: " . $activities . "\n\n";
I have more options then what is show in the above example. But the problem I am have is that only the last option selected is showing up in the mail. I need to use some type of an array or something to hold and send all of the items selected in the email. I need some one to help me with this or at least give me some pointers in the right direction. The page that this is being used on is at: http://www.gettocostarica.com/index.php?page=packages_imagination
Thanks,
Jared
<option value="item one">item one</option>
<option value="item two">item two</option>
</select>
On the form handler page which this form action goes to, I am sending an email using php. The part of the message that using the 'activities' variabler looks like this.
$message .= "Activities: " . $activities . "\n\n";
I have more options then what is show in the above example. But the problem I am have is that only the last option selected is showing up in the mail. I need to use some type of an array or something to hold and send all of the items selected in the email. I need some one to help me with this or at least give me some pointers in the right direction. The page that this is being used on is at: http://www.gettocostarica.com/index.php?page=packages_imagination
Thanks,
Jared