Top "Mysqli" questions

The mysqli PHP extension is a PHP database driver.

MySQLi count(*) always returns 1

I'm trying to count the number of rows in a table and thought that this was the correct way to …

php mysql mysqli
How to check if a row exists in MySQL? (i.e. check if an email exists in MySQL)

I need help checking if a row exists in the database. In my case, that row contains an email address. …

php mysql mysqli pdo
mysqli fetch_all() not a valid function?

Thanks to the answers I have figured out that I am unable to use fetch_all() because i am using …

php mysqli
Using Mysqli bind_param with date and time columns?

How do you insert data into a MySQL date or time column using PHP mysqli and bind_param?

php mysql mysqli
Call to a member function bind_param() on a non-object

I am trying to bind a variable in this prepared statement, but i keep receiving the error: Call to a …

php mysqli prepared-statement
Example of how to use bind_result vs get_result

I would like to see an example of how to call using bind_result vs. get_result and what would …

php mysql mysqli prepared-statement
Single Value Mysqli

I am trying to write a function that will check for a single value in the db using mysqli without …

php mysqli
Codeigniter: fatal error call to undefined function mysqli_init()

I just changed my server and experience these errors below: Fatal error: Call to undefined function mysqli_init() in /home/…

php codeigniter mysqli
PHP error: "Cannot pass parameter 2 by reference"

I just need help on this PHP error which I do not quite understand: Fatal error: Cannot pass parameter 2 by …

php mysql pdo mysqli
Difference between mysql & mysqli

Possible Duplicate: mysql vs mysqli in php What is the difference between mysql_* functions and mysqli_* functions? Is there any …

php mysql mysqli