1. Go to this page and download the library: Download thipages/sqlitecli 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/ */
/* index.php */
/* ********* */
$cli=new SqliteCli('./database.db');
$cli->execute(
"CREATE TABLE simple (id INTEGER PRIMARY KEY, name);",
"INSERT INTO simple (name) VALUES ('Paul'), ('Jack'),('Charlie');",
"SELECT name FROM simple WHERE id=1;",
function($res) {
// Set 'Paul' to all records
return "UPDATE simple SET name='$res'";
}
);
/* index.php */
/* ********* */
$cli=new SqliteCli('./database.db');
$cli->execute(
"CREATE TABLE simple (id INTEGER PRIMARY KEY, name);",
"INSERT INTO simple (name) VALUES ('Paul'), ('Jack'),('Charlie');",
"SELECT name FROM simple WHERE id=1;",
Orders::registerAs('QUERY_ID=1'),
function($res, $registry) {
$newName=$registry->get(''QUERY_ID=1'');
return "UPDATE simple SET name='$newName'";
}
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.