On Sun, 26 May 2002, Victor Spång Arthursson wrote:
>       <select multiple name="animals[2]">

change this to:

   <select multiple name="animals[2][]">

>      <select multiple name="animals[4]">

and this to:

   <select multiple name="animals[4][]">

because you want animals[2] and animals[4] to be arrays, not scalar 
values.

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to