Re: [PHP] drop down list not populating

2004-01-27 Thread John Nichel
John W. Holmes wrote: echo ""; If you view the HTML source of the page, do you see a bunch of empty elements? If so, then $row['community'] isn't valid. Maybe it's a case issue and you should be using $row['Community']? Can't tell because you're using "SELECT *", though... And he has an ope

Re: [PHP] drop down list not populating

2004-01-27 Thread John W. Holmes
Montagna, Dan wrote: I've got the code for a drop down list and the drop down box displays--but with no info in it. The underlying table is populated so I could use some advice on what might be wrong from here include("includes/db.php"); MYSQL_CONNECT(HOST,USER,PASS) OR DIE("Unabl

Re: [PHP] drop down list not populating

2004-01-27 Thread memoimyself
Hello Dan, On 27 Jan 2004 at 14:31, Montagna, Dan wrote: > echo ""; Uh-oh, this won't work: you have an unclosed tag here. Try this: echo ''.$row['community'].''; Good luck, Erik

[PHP] drop down list not populating

2004-01-27 Thread Montagna, Dan
Hi I've got the code for a drop down list and the drop down box displays--but with no info in it. The underlying table is populated so I could use some advice on what might be wrong from here "; } ?> Any ideas? Thanks Dan