mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-04-10 14:26:44 +00:00
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
include_once "include/config.php";
|
|
|
|
|
|
class SqlConnection extends PDO
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(SQL_HOST, SQL_USER, SQL_PASS);
|
|
}
|
|
} |