Top "Mysqli" questions

The mysqli PHP extension is a PHP database driver.

Advantages Of MySQLi over MySQL

What are the advantages of using MySQLi over MySQL?

php mysql mysqli
PHP PDO Transactions?

I have a signup page and basically I need data inserted into 4 tables. I'm new to PDO and am confused …

php transactions pdo mysqli multi-query
MySQLi not found dockerized php

I'm trying to dockerize my website. I've got Nginx and PHP up and running and it's working find except I …

php docker mysqli mysqlnd
A prepared statement, `WHERE .. IN(..)` query and sorting — with MySQL

Imagine we have a query: SELECT * FROM somewhere WHERE `id` IN(1,5,18,25) ORDER BY `name`; and an array of IDs to …

php mysql mysqli prepared-statement mergesort
Where are php's extensions .so files located?

I opened some some ini files like mysqli.ini , mysql.ini , pdo_mysql.ini. Inside those files there is an .…

php mysql mysqli php-ini .so
Why I am getting the Error "Commands out of sync; you can't run this command now"

The Documentation of the Error Mentioned in the Title Says If you get Commands out of sync; you can't run …

php mysqli mysqli-multi-query
(Fatal error: Call to a member function bind_param() on a non-object)

I get an error with this text:(sorry for my bad english I am from germany!) Error:Fatal error: Call …

php mysqli sqlbindparameter
What exactly does first parameter in bind_param() do?

I am trying to understand prepared statements using PHP and mysqli. I tried to read on some tutorials, manual and …

php mysql mysqli prepared-statement bindparam
How to connect to remote mysql database using php (hosted on dotCloud)

I am unable to connect to my database residing on dotCloud. I tried: $mysqli = new mysqli($db_host, $db_user, $…

php mysqli remote-server dotcloud
mysqli_store_result() vs. mysqli_use_result()

The question What is the difference between mysqli::store_result() and mysqli::use_result()? The story Vague documentation The documentation …

php mysqli