1. Go to this page and download the library: Download hypercode/query 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/ */
hypercode / query example snippets
$query = new Query;
$query->select('tabela');
$query = new Query;
$query->select('tabela','name, age, another');
$query = new Query;
$query->select('tabela')->limit(1);
$query = new Query;
$query->select('tabela')->where(['id' => 1]);
$query->select('tabela')->where(['nome' => 'Antonio']);
$query = new Query;
$query->insert('tabela', ['id','name','age', 'created_at']);