1. Go to this page and download the library: Download ova777/mysqli library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ova777 / mysqli example snippets
$db = new \ova777\MYSQLi\Connection('localhost', 'user', 'password', 'database');
//Все строки результата в виде массива ассоциативных массивов
$rows = $db->command('SELECT * FROM table')->queryAll();
//Первую строка результата в виде ассоциативного массива
$row = $db->command('SELECT * FROM table')->queryRow();
//Данные первой колонки результата
$column = $db->command('SELECT * FROM table')->queryColumn();
//Первый столбец первой колонки
$value = $db->command('SELECT * FROM table')->queryScalar();
//Один параметр
$rows = $db->command('SELECT * FROM table WHERE id=?')
->bind('i', 1)
->queryAll();
//Несколько параметров
$rows = $db->command('SELECT * FROM table WHERE id=? AND foo=?')
->bind('is', array(1, 'bar'))
->queryAll();
$db->command('INSERT INTO table SET int_col=?, str_col=?')
->bind('is', array(1, 'foo'))
->execute();
//Полготавливаем запрос
$cmd = $db->command('INSERT INTO table SET a=?,b=?');
//Выполняем запросы
$cmd->bind('is', array(1, 'foo'))->execute();
$cmd->bind('is', array(2, 'bar'))->execute();
//При повторном вызове bind можно не передавать типы значений
$cmd->bind(array(3, 'xyz'))->execute();
...
$cmd->close();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.