Skip to content

Instantly share code, notes, and snippets.

View AmraniCh's full-sized avatar
๐Ÿ‡ฒ๐Ÿ‡ฆ

Shakir El Amrani AmraniCh

๐Ÿ‡ฒ๐Ÿ‡ฆ
View GitHub Profile
@mloberg
mloberg / mysql.php
Created August 30, 2011 18:00
Simple PHP MySQL Class
<?php
class Mysql{
static private $link = null;
static private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);