Re: [PHP] pulldown population not getting the last value

2001-03-19 Thread Jason Stechschulte
On Sun, Mar 18, 2001 at 05:38:36PM -0800, Tom Beidler wrote: I'm trying to create a pulldown menu with distinct names from the found set. For some reason I never get the last name. Here's my code; $contact_query = "SELECT DISTINCT name FROM request" . " WHERE id = '5' OR

Re: [PHP] pulldown population not getting the last value

2001-03-19 Thread Tom Beidler
on 3/19/01 7:08 AM, Jason Stechschulte at [EMAIL PROTECTED] wrote: On Sun, Mar 18, 2001 at 05:38:36PM -0800, Tom Beidler wrote: I'm trying to create a pulldown menu with distinct names from the found set. For some reason I never get the last name. Here's my code; $contact_query = "SELECT

[PHP] pulldown population not getting the last value

2001-03-18 Thread Tom Beidler
I'm trying to create a pulldown menu with distinct names from the found set. For some reason I never get the last name. Here's my code; $contact_query = "SELECT DISTINCT name FROM request" . " WHERE id = '5' OR demo_id = '$demo_id'" . " ORDER BY name";