2017-11-22 19:13:00 -05:00

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);
}
}