Top "Mysqli" questions

The mysqli PHP extension is a PHP database driver.

What the different between MySQL Native Driver and MySQL Client Library

I want to know the different between MySQL Native Driver and MySQL Client Library and when to use both of …

php mysql mysqli mysqlnd
PHP mysqli reconnect problem

I am having trouble using the mysqli class in PHP and I haven't been able to find the answer anywhere. …

php mysqli fork reconnect
MySQLI binding params using call_user_func_array

Please see below my code. I am attempting to bind an array of paramenters to my prepared statement. I've been …

php mysqli bind
PHP and MySQLi close()

I am new to MySQL and PHP and am attempting to make my own CMS to help make managing my …

php mysqli
Connect to a mysql database via SSH through PHP

I have already written a php file that connects to the mysql database locally. Now, I want to connect to …

php mysql ssh mysqli phpseclib
mysqli_free_result necessary?

I was looking through my code and read that it was recommened to use mysqli_free_result when your result …

php mysqli
mysqli_query($conn, $sql) or $conn->query($sql)

I am new to web Development, I am currently not using any frameworks. Till now, I was using mysqli_query($…

php security oop mysqli procedural
Strict Standards: mysqli_next_result() error with mysqli_multi_query

I have tried using multi_query but I keep getting a strict Standards message popping up. $querystring = "INSERT INTO responses …

php mysqli standards strict mysqli-multi-query
$stmt->close() vs $stmt->free_result()

I am trying to clarify the difference between $stmt->close() and $stmt->free_result() when finalizing a prepared …

php mysql mysqli prepared-statement
Is there a way to get the default value of autocommit in MySQL?

I'm just wondering as per the title if this can be done? For example, if I was to do something …

php mysql mysqli transactions autocommit