Initial commit

This commit is contained in:
simon
2017-11-22 19:13:00 -05:00
commit e3ab67e95c
133 changed files with 202341 additions and 0 deletions

11
include/SqlConnection.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
include_once "include/config.php";
class SqlConnection extends PDO
{
public function __construct()
{
parent::__construct(SQL_HOST, SQL_USER, SQL_PASS);
}
}