testClass.php - A sample class writen that extends Singleton Class
index.php - Demonstration how to use the Singleton Class
To use this class, you just have to extend it
class db extends Singleton{
//anything here
}
To create object you would do like so:
$newDb = db::getInstance();