[PHP] Multiple Selection Menu Dilemma

2002-04-06 Thread Phillip S. Baker
Okay I have the following code so far. $sql = "SELECT stass_warrior FROM staff_assignments WHERE stass_pos = $pos_id AND stass_weekend = $initiation"; if (!$query = mysql_query($sql))error(mysql_error()); $query = mysql_fetch_row($query); $sql = "SELE

RE: [PHP] multiple selection dropdown lists

2001-03-22 Thread Stewart Taylor
ngie Bauer [mailto:[EMAIL PROTECTED]] Sent: 22 March 2001 11:31 To: [EMAIL PROTECTED] Subject: [PHP] multiple selection dropdown lists Hi we've got a dropdown list from a select statement, after you choose an option from there it creates another dropdown list also from a select statement. We w

[PHP] multiple selection dropdown lists

2001-03-22 Thread Angie Bauer
Title: Clear Day Hi   we've got a dropdown list from a select statement, after you choose an option from there it creates another dropdown list also from a select statement.  We want to know how to be able to select multiple values from the 2nd one and send them through to the next page for

Re: [PHP] Multiple Selection.

2001-02-18 Thread David Robley
; >onChange="javascript:insert(this);"> > Fruit > Vegetables > Fish > > > > &

RE: [PHP] Multiple Selection.

2001-02-18 Thread toto
egetables Fish -Original Message- From: BeeBoo [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 17, 2001 11:42 PM To: [EMAIL PROTECTED] Subject: [PHP] Multiple Selection. If i'm going to let use

[PHP] Multiple Selection.

2001-02-17 Thread BeeBoo
If i'm going to let users select multiple choices from a list in a form, let say the part in the form is like this: Fruit Vegetables Fish what code should i put in the submit part of the php to collect the multiple inputs? I tried array, but it seems not working. Please