Skip to content

Instantly share code, notes, and snippets.

View Tazerenix's full-sized avatar

John Benjamin McCarthy Tazerenix

View GitHub Profile
@Tazerenix
Tazerenix / db.class.php
Created July 25, 2012 09:03
A database wrapper that uses PDO.
<?php
/**
* db.class.php
*
* My first attempt at a Database wrapper class in PHP using PDO.
*
* @author John McCarthy
* @version 1.0
*/
<?php
class Request
{
const TYPE_NONE = 0;
const TYPE_ALPHA = 1;
const TYPE_DIGIT = 2;
const TYPE_ALNUM = 3;
const GET = 10;
const POST = 11;
const COOKIE = 12;