Re: [PHP-DB] Insert db values into dropdown box error
It looks like the parenthesis on the line with the 'while' loop is an opening parenthesis instead of a closing parenthesis. while($row=mysql_fetch_array($result)({ ^ dave
RE: [PHP-DB] Insert db values into dropdown box error
> -Original Message- > From: Edward Dias [mailto:[EMAIL PROTECTED] > while($row=mysql_fetch_array($result)({ > echo "$row[project_number]\n"; > } You have a backwards parenthesis. Try: while($row=mysql_fetch_array($result)) { Cheers, - Martin Norland, Database / Web Developer, I