Ver Mensaje Individual
  #19 (permalink)  
Antiguo 07/07/2008, 14:31
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Problemas o mejor dicho no entiendo como Guardar datos que traigo a un

Porque no te sale, en sí solo es dibujarlo por ejemplo:
Código PHP:
<?php include("funcionesbox.php"); ?>
<form action="combos.php" method="post">
Empleado: <?php cargar_combo("tblempleados","Id_empleado","Nombre"); ?><br />
AFP: <?php cargar_combo("tblAFP","Id_AFP","Nombre"); ?><br />
ISAPRES: <?php cargar_combo("tblISAPRES","Id_ISAPRE","Nombre"); ?><br />
<input type="submit" name="enviar" value="Enviar" />
</form>
combos.php:
Código PHP:
<?php
echo "Nombre: " $_POST['tblempleados'];
echo 
"AFP: " $_POST['tblAFP'];
echo 
"ISAPRES: " $_POST['tblISAPRES'];
?>
Saludos.