Hola buenas tardes,


Quisiera me ayudaran con mi código:

quiero hacer un combobox o menu desplegable apartir del "id" de la base de datos, actualmente el código despliega cuando se escribe en una caja de texto, ahora por medio del combobox quiero que despliegue las tablas.

dejo mi código esperando que me puedan ayudar.

Código HTML :

<HTML LANG="es">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<html>
<head>
<img align="center" src="fg.jpg"  />
 
 
<BR>
<BR>
 
 
</head>
<body>
 
<head>
   <link rel="stylesheet" href="style10.css" type="text/css" media="screen"/>
 
      </head>
 
 
<center><form name="form1" method="post" action="Buscador11k.php" id="cdr" >
  <h3>REUBICACIONES</h3>
      <p>
        <input name="busca"  type="text" id="busqueda">
        <input type="submit" name="Submit" value="buscar" />
        </p>
 
</form>
  <form name="form2" method="post" action="">
  </form>
</center>
 
  <?php
$busca="";
$busca=$_POST['busca'];
mysql_connect("localhost","root","root");// conexion
mysql_select_db("Red");//nombre de la base de datos
if($busca!=""){
$busqueda=mysql_query("SELECT * FROM f11 WHERE ID='$busca'");
?>
 
 
<table class="table1" style="width:100%" border="2" >
 
 
   <tr>
    <th>
    <font size=2>OFICIO</font>
    </th>
       <th>
    <font size=2>MOVIMIENTO</font>
    </th>
    <th>
    <font size=2>ID</font>
    </th>
     <th>
 
 
   </tr>
 
<?php
 
while($f=mysql_fetch_array($busqueda)){
echo '<tr>';
echo '<td><font size=2>'.$f['OFICIO'].'</td></font>';
echo '<td><font size=2>'.$f['T_MOV'].'</td></font>';
echo '<td><font size=2>'.$f['ID'].'</td></font>';
 
 
}
 
}
?>
</table>
<p>&nbsp;</p>
<br>