Código HTML:
Ver original
<form method = "POST" action = "procesarRegs.php" name = "frmPrincipal"> <table border = "8" align = "Center" cellspacing = "2" cellpadding = "2"> <tbody> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> <td> <select name = "selEstrategia"> </select> </td> </tr> <tr> </tr> <tr> </tr> <tr> <tr> </tr> <tr> </tr> </tbody> </table> </form>
Código PHP:
<?php
require_once("class.php");
$var = new Procesos();
$var->insertarRegistros();
?>
Código PHP:
public function insertarRegistros()
{
// Campos
$codigo = $_POST["txtCodigo"];
$Accion = $_POST["txtAccion"];
$fecha_i = $_POST["txtFechaI"];
$fecha_t = $_POST["txtFechaT"];
$fecha_ex = $_POST["txtFechaEx"];
$fecha_ela = $_POST["txtFechaEla"];
$obs = $_POST["txtObserv"];
$estra = $_POST["selEstrategia"];
$value = 45;
try
{
$dbh = new PDO("mysql:dbname=infotep","root","abcd6696");
}
catch (PDOException $e)
{
echo "Connection Failed " . $e.getMessage();
}
$sql = "Insert into Certificados Values (null,:Cod,:Accion,:inicio,:termino,:recepcion,:estrategia,:certificados,:tiempo,:obs)";
$param = $dbh->prepare($sql);
try
{
$param->bindValue(':Cod',$codigo,PDO::PARAM_INT);
$param->bindValue(':Accion',$Accion,PDO::PARAM_STR);
$param->bindValue(':inicio',$fecha_i,PDO::PARAM_STR);
$param->bindValue(':termino',$fecha_t,PDO::PARAM_STR);
$param->bindValue(':recepcion',$fecha_ex,PDO::PARAM_STR);
$param->bindValue(':estrategia',$estra,PDO::PARAM_STR);
$param->bindValue(':certificados',$fecha_ela,PDO::PARAM_STR);
$param->bindValue(':tiempo',$value,PDO::PARAM_INT);
$param->bindValue(':obs',$obs,PDO::PARAM_STR);
}
catch (PDOException $e)
{
echo e.getMessage();
}
$param->execute();
print_r($param);
}
}
Gracias de antemano. :)