Skip to content

Instantly share code, notes, and snippets.

@rvwilliams
rvwilliams / mysql.php
Last active June 17, 2020 09:10 — forked from mloberg/mysql.php
Simple PHP MySQL Class
<?php
/* This is a mysqli update to the original code that works with PHP 7 variants.
* There are also a couple of small corrections to the preg_match patterns for LIMIT
*/
class Mysql {
private static $link = null;
private static $info = array (
'last_query' => null,
'num_rows' => null,
'insert_id' => null