[PHP-DB] RE: Stumped again...

2003-03-11 Thread NIPP, SCOTT V (SBCSI)
I don't really understand this suggestion. Could someone possibly expound on this further? Maybe an example? Thanks. -Original Message- From: Ben Walling [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 12:19 PM To: NIPP, SCOTT V (SBCSI) Subject: Re: Stumped again...

[PHP-DB] RE: Stumped again...

2003-03-11 Thread Ben Walling
Your code: while($name = mysql_fetch_row($groups_tmp)) { $grp_list .= option$name[0]/option\n; } should be changed to: while($name = mysql_fetch_row($groups_tmp)) { $grp_list .= option value=.$name[0].$name[0]/option\n; } The value property of the option tag is actually what gets submitted

[PHP-DB] RE: Stumped again...

2003-03-11 Thread NIPP, SCOTT V (SBCSI)
OK... I think I understand what you are getting at here, but I don't think this actually addresses the problem that I am having. I have, in other places, the direct value successfully passing from one page to another. In this case, what I am lacking is the selected data actually getting