estoy haciendo un cuadro para llenar informacion y visuzalizarlo ahi mismo
http://grupogba.com/modelo.php
pero solo visualizo los resultados de la primera caja mas no de la segunda o la tercera
agradeceria mucho su ayuda
este es el codigo que tengo
<form id="insertar" name="insertar" method="post" action="">
<p>N° de Comprobante:
<input name="comprobante" type="text" id="comprobante" size="50" />
</p>
<?php
if ($totEmp> 0) {
while ($rowEmp = mysql_fetch_assoc($resEmp)) {
echo "Comprobante: ".$rowEmp['comprobante']."<br>";
}
}
?>
<p>RUC:
<input name="ruc" type="text" id="ruc" size="50" />
</p>
<?php
if ($totEmp> 0) {
while ($rowEmp = mysql_fetch_assoc($resEmp)) {
echo "Ruc: ".$rowEmp['ruc']."<br>";
}
}
?>
<p>Razon social:
<input name="razon" type="text" id="razon" size="50" />
</p>
<?php
if ($totEmp> 0) {
while ($rowEmp = mysql_fetch_assoc($resEmp)) {
echo "Razon: ".$rowEmp['razon']."<br>";
}
}
?>
<input type="submit" name="Submit" value="Insertar Registro" />
<input type="hidden" name="action" value="add" />
</form>