mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-12-20 01:26:00 +00:00
Initial commit
This commit is contained in:
11
include/SqlConnection.php
Normal file
11
include/SqlConnection.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user