Top "Mysqli" questions

The mysqli PHP extension is a PHP database driver.

Call to undefined method mysqli_stmt::get_result

Here's my code: include 'conn.php'; $conn = new Connection(); $query = 'SELECT EmailVerified, Blocked FROM users WHERE Email = ? AND SLA = ? AND `…

php mysqli
Call to a member function fetch_assoc() on boolean in <path>

I'm getting the above error when running the below code to display bookings made from a database. <?php $servername = "…

php mysqli
Warning: mysqli_query() expects parameter 1 to be mysqli, null given in

I am trying to build a simple custom CMS, but I'm getting an error: Warning: mysqli_query() expects parameter 1 to …

php mysqli
mysqli_fetch_array while loop columns

Should be pretty basic, but I can't get it to work. I have this code to iterate over a mysqli …

php mysqli while-loop multiple-columns
Single Result from Database by using mySQLi

I am trying to use mySQLi for the first time. I have done it in case of loop. Loop results …

php loops mysqli
What is the difference between MySQL, MySQLi and PDO?

What is the difference between MySQL, MySQLi and PDO? Which one is the best suited to use with PHP-MySQL?

php mysql pdo mysqli
Inserting data to table (mysqli insert)

I've been looking at this code for a while now and I can't see where the problem is. I have …

php database mysqli sql-insert
MySQLi prepared statements error reporting

I'm trying to get my head around MySQli and I'm confused by the error reporting. I am using the return …

php mysql mysqli prepared-statement
SELECT * FROM in MySQLi

My site is rather extensive, and I just recently made the switch to PHP5 (call me a late bloomer). All …

php mysqli
How do I configure php to enable pdo and include mysqli on CentOS?

PHP Version 5.3.3 on CentOS (x86_64, RHEL 6) Apparently my PHP installation was configured to exclude Mysqli and disable PDO for some …

php pdo mysqli centos