Do more with a .json file...

<?php
    $jsondb = new \JSONDB\JSONDB();
    $database = $jsondb->connect('server_name', 'username', 'password', 'db_name');
    $results = $database->query("table_name.select(*).where(foo = 'hello', bar = 'world')");
    while ($result = $results->fetch()) {
        echo $result['foo'] . ' ' . $result['bar'];
    }
    $database->disconnect();
?>