'SQLSTATE [HY093]:参数号无效:绑定变量数与令牌数不匹配'

时间:2017-08-30 18:45:38

标签: php mysql pdo

我收到错误的SQLSTATE [HY093]:参数号无效:绑定变量数与令牌数不匹配

if (isset($_POST['cadastrar'])){
        $nome     = trim(strip_tags($_POST['nome']));
        $usuario  = trim(strip_tags($_POST['usuario']));
        $email    = trim(strip_tags($_POST['email']));
        $senha    = trim(strip_tags($_POST['senha']));
        $cpf      = trim(strip_tags($_POST['cpf']));
        $rg       = trim(strip_tags($_POST['rg']));

        $select = "INSERT INTO registro (nome, usuario, email, senha, cpf, rg)
                                    VALUES (:nome, :usuario, email, :senha, :cpf, :rg)";

        try{
            $result = $conexao->prepare($select);
            $result->bindParam(':nome', $nome, PDO::PARAM_STR);
            $result->bindParam(':usuario', $nome, PDO::PARAM_STR);
            $result->bindParam(':senha', $nome, PDO::PARAM_STR);
            $result->bindParam(':email', $nome, PDO::PARAM_STR);
            $result->bindParam(':cpf', $nome, PDO::PARAM_STR);
            $result->bindParam(':rg', $nome, PDO::PARAM_STR);
            $result->execute();
            $contar = $result->rowCount();

            if($contar>0){
                echo 'logado com sucesso';
            }else{
                echo "Os dados digitados estão incorretos";
            }

        }catch(PDOException $e){
            echo $e;
        }
    }

1 个答案:

答案 0 :(得分:1)

您的查询

   $select = "INSERT INTO registro (nome, usuario, email, senha, cpf, rg)
                                    VALUES (:nome, :usuario, email, :senha, :cpf, :rg)";

更改后 缺少:在电子邮件中

  $select = "INSERT INTO registro (nome, usuario, email, senha, cpf, rg)
                                        VALUES (:nome, :usuario, :email, :senha, :cpf, :rg)";