Call to undefined method mysqli_stmt::get_result

后端 未结 10 926
难免孤独
难免孤独 2020-11-21 05:10

Here\'s my code:

include \'conn.php\';
$conn = new Connection();
$query = \'SELECT EmailVerified, Blocked FROM users WHERE Email = ? AND SLA = ? AND `Passwo         


        
10条回答
  •  广开言路
    2020-11-21 05:30

    Your system is missing the mysqlnd driver!

    If you are able to install new packages on your (Debian/Ubuntu-based) server, install the driver:

    sudo apt-get install php5-mysqlnd
    

    and then restart your web server:

    sudo /etc/init.d/apache2 restart
    

提交回复
热议问题