Hazırlanmış bir açıklamada valuesfrom mysql karşılaştırmak için açılamıyor

1 Cevap php

Benim hazırlanmış deyimi çalıştırdığınızda, böylece bu veritabanına bağlanmak için almak gibi olamaz. Herkes ben unuttum ne bir fikir var mı?

private function check_credentials($plain_username, $password)
    {
    global $dbcon;

    $ac = new ac();
    $ac->dbconnect();
    $userid = $dbcon->prepare('SELECT id FROM users WHERE username = :username AND password = :password LIMIT 1');
    $userid->bindParam(':username', $plain_username);
    $userid->bindParam(':password', $password);
    $userid->execute();

    $id = $userid->fetch();
    Return $id;
    }

EDIT: Ben sorguda bir INSERT INTO için, sorgu bir SELECT gelen SQL sorgusu değişti ve o çalıştı. Ne halt oluyor?

1 Cevap

Lütfen backtrace yığını biçimlendirilmesi:

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY093]: Invalid parameter number: no parameters were bound' in E:\PortableApps\xampp\htdocs\SN\AC\ACclass.php:61
Stack trace:
#0 E:\PortableApps\xampp\htdocs\SN\AC\ACclass.php(61): PDOStatement->execute(Array)
#1 E:\PortableApps\xampp\htdocs\SN\AC\ACclass.php(34): ac->check_credentials('joe', '94a02c32b6ff629...')
#2 E:\PortableApps\xampp\htdocs\SN\UI\UIclass.php(17): ac->authentication()
#3 E:\PortableApps\xampp\htdocs\SN\index.php(4): ui->start()
#4 {main} thrown in E:\PortableApps\xampp\htdocs\SN\AC\ACclass.php on line 61

Eğer check_credentials işlevi yeni bir ac nesnesinin örneğini konum herhangi bir sebebi var mı? Check_credentials zaten ac bir yöntem olduğu göz önüne alındığında, bu garip görünüyor. dbconnect, küresel dbcon üzerine mı?