Código PHP:
<body>
<form action= "test_insert.php" method="post">
<tr>
<td width="80" rowspan="1" valign="top">
<?php
$con="SELECT * from bases_de_datos TX where vigente=1 order by nom_base asc";
$res=@mysql_query($con,$cnx);
if(!$res){
echo " fallo";
}
else{
echo "<select name='donde1'>\n";
while ($fila=mysql_fetch_array($res)){
echo "<option value= ".$row['id']."> ".$fila['nom_base']." </option>";
}
echo "</select>";
}
?>
</td>
</tr>
<fieldset>
<legend><b>Resolución</b></legend>
<table border="0" width="740" cellpadding="5" align="center">
<tr>
<td width="164" align="right">
<label><b>Bibliotecario que atendio:</b></label>
</td>
<td width="80" rowspan="2" valign="top">
<?php
$con="SELECT TW.id,TW.nombre_biblio from bibliotecario TW order by nombre_biblio asc";
$res=@mysql_query($con,$cnx);
if(!$res){
echo " fallo";
}
else{
echo "<select name='donde3'>\n<option selected>Selecciona:</option>";
while ($fila=mysql_fetch_array($res)){
echo "<option value= ".$row['id']."> ".$fila['nombre_biblio']." </option>";
}
echo "</select>";
}
?>
</td>
</tr>
</table>
<br>
<table align= "center">
<tr>
<td width="122" align="center">
<input type="submit" tabindex="24">
</td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
este el el scrip para enviar los datos:
Código PHP:
$rec_a = $_POST['donde1'];
$rec_b = $_POST['donde2'];
$rec_c = $_POST['donde3'];$rec_d = $_POST['donde4'];
$bibliotecario_id = $_POST['bibliotecario_id'];
$insertar = mysql_query("INSERT INTO test_insert (donde1,donde2,donde3,bibliotecario_id)
VALUES ('{$rec_a}','{$rec_b}','{$rec_c}','{$bibliotecario_id}')", $cnx);
//4. Cerrar conexión a la Base de Datos
mysql_close($conexion);