PHP code example of expert-framework / database

1. Go to this page and download the library: Download expert-framework/database 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/ */

    

expert-framework / database example snippets


use ExpertFramework\Database\Database;

$data = Database::table('users')
    ->select(['id', 'username', 'email'])
    ->where('status', '=', 'ativo')
    ->get();

Database::table('users')
    ->insert(['username' => 'john_doe', 'email' => '[email protected]']);

Database::table('users')
    ->where('id', '=', 1)
    ->update(['email' => '[email protected]']);