Re: [PHP] Drop Down Box Question

2002-07-23 Thread Jason Stechschulte
On Sun, Jul 21, 2002 at 11:43:25AM -0400, WANDA HANSEN wrote: Is there a way to handle data gathered from a drop down menu that allows multiple selections using PHP? Yes. The way I normally do this is to use HTML that looks something like: select multiple='multiple' name='test[]' option

Re: [PHP] Drop Down Box Question

2002-07-21 Thread Richard Lynch
Hello, Is there a way to handle data gathered from a drop down menu that allows multiple selections using PHP? Of course. Name your select box as an array, and include the 'multiple' keyword. select name='something[]' multiple Then you'll have an array on your processing page that holds all

RE: [PHP] Drop Down Box Question

2002-07-21 Thread John Holmes
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 21, 2002 5:06 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Drop Down Box Question Hello, Is there a way to handle data gathered from a drop down menu that allows multiple selections using PHP