我在其他网站上看到,本地服务器的php.ini是以不同的方式配置的。但是,我相信通过手动填写其余的列,它应该能够插入数据。它甚至没有给我任何提示。这是我的密码。
$datos = array("nombre" => $_POST["nuevoNombre"],
"usuario" => $_POST["nuevoUsuario"],
"password" => $encriptar,
"rol" => $_POST["nuevoRol"]);
$respuesta = ModeloUsuarios::mdlIngresarUsuario($datos);
if ($respuesta == 'ok') {
echo '<script>
swal({
type: "success",
title: "Se ha creado un nuevo usuario",
showConfirmButton: true,
confirmButtonText: "Cerrar"
}).then(function(result){
if(result.value){
window.location = "usuarios";
}
});
</script>';
} else {
echo '<script>alert("asdf");</script>';
}
} else {
echo '<script>
swal({
type: "error",
title: "Por favor llena los campos correctamente",
showConfirmButton: true,
confirmButtonText: "Cerrar"
}).then(function(result){
if(result.value){
window.location = "usuarios";
}
});
</script>';
}
} }
static public function mdlIngresarUsuario($datos){
$statement = Conexion::conectar()->prepare("INSERT INTO usuarios (nombre, usuario, password, rol, estado, ultimo_login)
VALUES (, :nombre, :usuario, :password, :rol, :estado, :ultimo_login)");
$statement->bindParam(":nombre", $datos["nombre"], PDO::PARAM_STR);
$statement->bindParam(":usuario", $datos["usuario"], PDO::PARAM_STR);
$statement->bindParam(":password", $datos["password"], PDO::PARAM_STR);
$statement->bindParam(":rol", $datos["rol"], PDO::PARAM_STR);
$statement->bindParam(":estado", '0', PDO::PARAM_STR);
$statement->bindParam(":ultimo_login", '0', PDO::PARAM_STR);
if ($statement->execute()) {
return "ok";
} else {
return "error";
}
}
1条答案
按热度按时间pexxcrt21#
也许可以尝试使用
->execute()
拆下bindParam
,并更改为:我觉得你在利用
PDO::PARAM_STR
在非字符串上是它失败的原因之一。我也注意到了ultimo_login
在数据库中有一个默认值,因此从insert sql和execute数组中删除,它将自动正确插入日期时间戳。