Hello Dan,

On 27 Jan 2004 at 14:31, Montagna, Dan wrote:

> echo "<OPTION VALUE=".$row['community']."</OPTION>";

Uh-oh, this won't work: you have an unclosed tag here. Try this:

echo '<option value="'.$row['community'].'">'.$row['community'].'</option>';

Good luck,

Erik

Reply via email to