[PHP-DB] A real question this time...

2002-07-05 Thread NIPP, SCOTT V (SBCSI)
This time I have a real question that I need help with. I am not sure why something is not working the way I intend it. This is most likely a mistake in my understanding, but here goes... I have a section of code that populates a dropdown list with the results of a query on a

Re: [PHP-DB] A real question this time...

2002-07-05 Thread John Coder
On Fri, 2002-07-05 at 14:43, NIPP, SCOTT V (SBCSI) wrote: mysql_select_db($database, $Test); $query_SA = SELECT sbcuid FROM contacts_sa; $SA = mysql_query($query_SA, $Test) or die(mysql_error()); $PASS = $SA; snip I think here is your problem you have the select element name pass just as

RE: [PHP-DB] A real question this time...

2002-07-05 Thread NIPP, SCOTT V (SBCSI)
AM To: '[EMAIL PROTECTED]' Subject: [PHP-DB] A real question this time... This time I have a real question that I need help with. I am not sure why something is not working the way I intend it. This is most likely a mistake in my understanding, but here goes... I have