Skip to content

Instantly share code, notes, and snippets.

View jameskropp's full-sized avatar

James Kropp jameskropp

View GitHub Profile
@jameskropp
jameskropp / # mysql - 2017-05-11_14-09-18.txt
Created July 14, 2018 23:00
mysql on macOS 10.13.3 - Homebrew build logs
Homebrew build logs for mysql on macOS 10.13.3
Build date: 2017-05-11 14:09:18
@jameskropp
jameskropp / class.database.php
Last active November 26, 2022 20:09 — forked from jonashansen229/class.database.php
PHP OOP Database class using PDO and Singleton pattern. Only one instance of the class will be made, this requires less memory.
<?php
/*
* Mysql database class - only one connection alowed
*/
<?php
class DB {
private $connection;
private static $_instance;