Skip to content

Instantly share code, notes, and snippets.

View jameskropp's full-sized avatar

James Kropp jameskropp

View GitHub Profile
@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;