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: Red Green Blue Now in your PHP program, you can

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 do

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. > > > >Then you'll have an array on your processing page that holds all of the >values that

RE: [PHP] drop down box

2002-03-20 Thread Demitrious S. Kelly
This is actually a small excerpt from a program I've written in the past... hope it helps... function show_downtime_form() { global $conf_file; global $filter; $data=file($conf_file); foreach ( $data as $line ) { $bang=explode(':', $line);