estiados la parecer no quedo clara la consuta o yo no supe expresar bien mi duda
este es el formulario de ingreso y aqui hay una funcion que me carga un combo box que es paices y ese dato que me muestra de esta manera <?php generaPaises(); ?> es e que quiero enviar al procimo formulario el dato que me aroja ese como box
Código PHP:
<form action="" name="Bodega" class="niceTitle" onSubmit="enviarDatosbodega(); return false">
<p> </p>
<table width="612" border="0" align="center" cellpadding="0" cellspacing="0" class="oSuperior">
<!--DWLayoutTable-->
<tr>
<td width="1" height="15"></td>
<td width="1"></td>
<td width="36"></td>
<td width="36"></td>
<td width="15"></td>
<td width="18"></td>
<td width="243"></td>
<td width="3"></td>
<td width="81"></td>
<td width="71"></td>
<td width="3"></td>
<td width="60"></td>
<td width="3"></td>
<td width="17"></td>
<td width="43" rowspan="2" valign="top"><img src="http://www.forosdelweb.com/f18/iconos/iconos-linux-acciones/mail_send.png" width="32" height="32" /></td>
<td colspan="2" rowspan="2" valign="top"><img src="http://www.forosdelweb.com/f18/iconos/iconos-linux-acciones/project_open.png" width="32" height="32" /></td>
</tr>
<tr>
<td height="38"></td>
<td></td>
<td colspan="4" rowspan="3" valign="top"><img src="http://www.forosdelweb.com/f18/iconos/logo siap amarillo web.jpg" width="97" height="80" /></td>
<td></td>
</tr>
<tr>
<td height="35"></td>
<td></td>
<td></td>
<td></td>
<td> </td>
<td valign="top">Numero Guia
<label for="textfield"></label>
<input name="Nguia" type="text" id="Nguia" size="11" /></td>
<td></td>
<td colspan="3" valign="top">Fecha Ingreso
<input name="desde" type="text" id="desde" onclick="popUpCalendar(this, form1.desde, 'dd-mm-yyyy');" size="10" /></td>
<td></td>
<td width="6"></td>
<td width="26"></td>
</tr>
<tr>
<td height="20"></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="14"></td>
<td></td>
</tr>
<tr>
<td height="13"></td>
<td colspan="3" rowspan="2" valign="top"><label for="textfield">Clientes</label><?php generaPaises(); ?>
<input name="generaPaises" type="hidden" id="generaPaises" value="<?php echo $row_compra['generaPaises']; ?>"> </td>
<td></td>
<td colspan="2" valign="baseline"><label for="label">Producto</label></td>
<td></td>
<td colspan="2" valign="top">Medidas</td>
<td></td>
<td rowspan="2" valign="top"><label for="textfield">Unidades</label>
<input name="unidad" type="text" id="unidad" size="10" /></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="24"></td>
<td> </td>
<td colspan="2" valign="top"><label for="textfield"></label> <select disabled="disabled" name="estados" id="estados">
<option value="0">Selecciona opción...</option>
</select></td>
<td> </td>
<td colspan="2" valign="top"><label for="textfield"></label> <select disabled="disabled" name="medidas" id="medidas">
<option value="0">Selecciona opción...</option>
</select></td>
<td> </td>
<td> </td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="36"></td>
<td></td>
<td></td>
<td> </td>
</tr>
<tr>
<td height="57"></td>
<td></td>
<td></td>
<td colspan="4" valign="top"><div id="resultado"><?php include('consulta.php');?></div>*</td>
<td colspan="3" valign="top" class="button3"><label for="Submit"></label>
<input name="Submit" type="submit" class="oBoton" id="Submit" value="Enviar" /></td>
<td> </td>
</tr>
</table>
<p> </p>
<p> </p>
</form>
en este fromulario tomo los datos que envio del formulario de reguistros :
Código PHP:
function enviarDatosBodega(){
//donde se mostrará lo resultados
divResultado = document.getElementById('resultado');
divResultado.innerHTML= '<img src="anim.gif">';
//valores de las cajas de texto
fe=document.Bodega.Fecha.value;
ng=document.Bodega.Nguia.value;
es=document.Bodega.Estados.value;
me=document.Bodega.Medidas.value;
un=document.Bodega.Unidad.value;
ge=document.Bodega.generaPaises.value;
//instanciamos el objetoAjax
ajax=objetoAjax();
//uso del medoto POST
//archivo que realizará la operacion
//Reguistro_Bodega.php.php
ajax.open("POST", "Reguistro_Bodega.php",true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
//mostrar resultados en esta capa
divResultado.innerHTML = ajax.responseText
//llamar a funcion para limpiar los inputs
LimpiarCampos();
}
}
ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
//enviando los valores
ajax.send("Fecha="+fe+"&Nguia="+ng+"&Estado="+es+"&Medidas="+me+"&Unidad="+un+"&generaPaises="+ge)
}