douzuan2814 2015-10-10 14:28
浏览 58

无法从我的数据库类访问连接详细信息

hi i am using oophp to create a registration and login system, i am trying to check if an email or username already exists in the database, but when i try and call the database class i keep getting these errors, any help would be appreciated.

Notice: Undefined variable: Database in C:\Users\josh\xampp-win32-1.8.3-5-VC11\xampp\htdocs\oop_system\include\class.user.php on line 14

Notice: Trying to get property of non-object in C:\Users\josh\xampp-win32-1.8.3-5-VC11\xampp\htdocs\oop_system\include\class.user.php on line 14

Fatal error: Call to a member function query() on a non-object in C:\Users\josh\xampp-win32-1.8.3-5-VC11\xampp\htdocs\oop_system\include\class.user.php on line 14

user class

<?php 
    include "db_config.php";

    class User{

        /*** for registration process ***/
        public function reg_user($name,$username,$password,$email){


            $password = md5($password);
            $sql="SELECT * FROM users WHERE uname='$username' OR uemail='$email'";

            //checking if the username or email is available in db
            $check =  $Database->getConnection->query($sql) ;
            $count_row = $check->num_rows;

            //if the username is not in db then insert to the table
            if ($count_row == 0){
                $sql1="INSERT INTO users SET uname='$username', upass='$password', fullname='$name', uemail='$email'";
                $result = mysqli_query($this->db,$sql1) or die(mysqli_connect_errno()."Data cannot inserted");
                return $result;
            }
            else { return false;}
        }
    }
?>

db_config class

<?php
/*
* Mysql database class - only one connection alowed
*/
class Database {
    private $_connection;
    private static $_instance; //The single instance
    private $_host = "localhost";
    private $_username = "root";
    private $_password = "";
    private $_database = "oop";
    /*
    Get an instance of the Database
    @return Instance
    */
    public static function getInstance() {
        if(!self::$_instance) { // If no instance then make one
            self::$_instance = new self();
        }
        return self::$_instance;
    }
    // Constructor
    private function __construct() {
        $this->_connection = new mysqli($this->_host, $this->_username, 
        $this->_password, $this->_database);

        // Error handling
        if(mysqli_connect_error()) {
            trigger_error("Failed to conencto to MySQL: " . mysql_connect_error(),
                 E_USER_ERROR);
        }
    }
    // Magic method clone is empty to prevent duplication of connection
    private function __clone() { }
    // Get mysqli connection
    public function getConnection() {
        return $this->_connection;
    }
}
?>
  • 写回答

1条回答 默认 最新

  • dongxiezhi0590 2015-10-10 14:33
    关注
    1. Database is a class, not a variable, so you call it with Database, not $Database.
    2. getConnection is a function/method and not a variable/field, so you'll have to use parentheses after its name: getConnection().
    3. getConnection is a non-static function, so you can't call it on Database, you'll have to get an instance of that class (using Database::getInstance()).

    All in all, replace this line:

    $check = $Database->getConnection->query($sql);
    

    with this:

    $check = Database::getInstance()->getConnection()->query($sql);
    
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器