├── .gitattributes ├── .gitignore ├── Database.php ├── README.md ├── config.php ├── db.sql └── sample.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/.gitignore -------------------------------------------------------------------------------- /Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/Database.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/README.md -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/config.php -------------------------------------------------------------------------------- /db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/db.sql -------------------------------------------------------------------------------- /sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildantea/php-pdo-mysql-helper-class/HEAD/sample.php --------------------------------------------------------------------------------