I have a sql qyery which i want to add the results to a drop down menu.
<select NAME="venue" size="1">PHP Code:<?php
$link = mysql_connect (localhost, user, pass);
mysql_select_db (db12816e);
$result = mysql_query ("SELECT name From table");
while ($row = mysql_fetch_array($result));
{
?>
<option value="something i guess">results</option>
how do i get the results in the drop down menu???




Reply With Quote