No realiza insert
Publicado por Fulgencio (20 intervenciones) el 10/05/2020 00:56:53
Tengo el siguiente codigo
no me realiza el insert
el id es autoincrement
no me realiza el insert
el id es autoincrement
1
2
3
4
5
6
7
8
9
10
11
12
13
$consulta5 = $conexion->prepare("insert into prestamos values('2020-01-01','2010-01-10','1','1234567890155')");
//$consulta5 = $conexion->prepare("insert into prestamos values(:pre_fecha, :pre_devolucion,:pre_socio,:pre_ejemplar)");
$miFecha=$_POST['txtFecha'];
$miFechaDevolucion=$_POST['txtFechaDevolucion'];
$miSocio=$_POST['socios'];
$miEjemplar=$_POST['ejemplares'];
$consulta5->bindParam(":pre_fecha", $miFecha);
$consulta5->bindParam(":pre_devolucion", $miFechaDevolucion);
$consulta5->bindParam(":pre_socio", $miSocio);
$consulta5->bindParam(":pre_ejemplar", $miEjemplar);
$consulta5->execute();
Valora esta pregunta


0