supongo es algo con el while, pero por más que le muevo no le encuentro, a ver si me pueden ayudar
este es el link por si quieren checar como se ve
y este es el código
Código PHP:
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<? mysql_connect("localhost", "user", "pass")
or die("Could not connect to database.");
mysql_select_db("coveca_gob_mx") or
die("Cannot select database");
$result = mysql_query("select distinct producto from catalogo") or die( mysql_error() );
while ($row = mysql_fetch_array($result))
{
?>
<form name="form1" method="post" action="drop2.php">
<select name="producto" size="1">
<option selected><? echo $row['producto']; ?></option>
</form>
<?
}
?>
</body>
</html>
gracias