Skip to content

Instantly share code, notes, and snippets.

@xeon826
xeon826 / mysql.php
Created August 7, 2018 02:49 — forked from mloberg/mysql.php
Simple PHP MySQL Class
<?php
class Mysql{
static private $link = null;
static private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);