查询不将空数据作为空数据插入数据库(mamp)

41zrol4v  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(264)

我在其他网站上看到,本地服务器的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";
}

}

e5nqia27

e5nqia271#

也许可以尝试使用 ->execute() 拆下 bindParam ,并更改为:

$statement->execute(array(
    ':nombre' => $datos['nombre'],
    ':usuario' => $datos['usuario'],
    ':password' => $datos['password'],
    ':rol' => $datos['rol'],
    ':estado' => 0
));

我觉得你在利用 PDO::PARAM_STR 在非字符串上是它失败的原因之一。我也注意到了 ultimo_login 在数据库中有一个默认值,因此从insert sql和execute数组中删除,它将自动正确插入日期时间戳。

相关问题