Skip to content

Instantly share code, notes, and snippets.

View dot1q's full-sized avatar

Gregory Brewster dot1q

View GitHub Profile
@dot1q
dot1q / gist:1d2df9750fb506844629
Last active September 29, 2015 18:37 — forked from johnmorris/gist:8135167
A simple database class using mysqli prepared statements in PHP.
<?php
/*
* Make sure the class only exists once
*/
if ( !class_exists( 'DB' ) ) {
/**
* Class for mysql
*/