PHP code example of dokakoka / db-wrapper

1. Go to this page and download the library: Download dokakoka/db-wrapper 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/ */

    

dokakoka / db-wrapper example snippets



use dokakoka\DbWrapper\db;
$db = new db();

/* connect to database */
$db = new db('127.0.0.1', 'username', 'password', 'database', 3306);

/* insert/update/delete */
$id = $db->insert('tablename', ['col1' => 'foo'])->excute();
$db->update('tablename', ['col1' => 'bar'], ['id' => $id])->excute();
$db->delete('tablename', ['id' => $id])->excute();

/* select */
$db->select("*", 'tablename', ['id' => $id]);