Hello, > <select name='email_recipients' size='6' multiple>
change this to <select name='email_recipients[]' ...
you can then easily access the multiple selections by walking the array:
for ($i=0;$i<sizeof($email_recipients);$i++)
{
echo $email_recipients[$i];
echo "<br />";
}
regards
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

