Skip to content

Instantly share code, notes, and snippets.

View AtulTripathi's full-sized avatar

Atul Kumar Tripathi AtulTripathi

View GitHub Profile
@eimg
eimg / pdo-wrapper.php
Last active November 29, 2022 11:20
Simple yet secure PHP PDO database wrapper with CRUD methods...
<?php
# PDO Wrapper, supporting MySQL and Sqlite
# Usage:
# $db = new db();
#
# // table, data
# $db->create('users', array(
# 'fname' => 'john',
# 'lname' => 'doe'
# ));