Skip to content

Instantly share code, notes, and snippets.

@kinncj
kinncj / Db.php
Created May 10, 2013 00:08
PDO and it's magics - PHP Brasil - May 9, 2013
<?php
class Db
{
private $pdo;
protected $table;
public function __construct()
{
$parameters = json_decode(file_get_contents('config.json'));