flush -- WIP admin panel

This commit is contained in:
Tony Yang
2019-05-30 14:18:07 +08:00
parent 75af7df7b4
commit 84fb4180c9
53 changed files with 9104 additions and 2 deletions

16
connection/SQL.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
if(!@$includepath){
set_include_path('include/');
}
error_reporting(E_ALL);
require_once('db.php');
$database_SQL = ""; // 資料庫名稱
$username_SQL = ""; // 連線帳號
$password_SQL = ""; // 連線密碼
$hostname_SQL = ""; // MySQL伺服器
global $SQL;
$SQL = new Database($hostname_SQL,$username_SQL,$password_SQL,$database_SQL);
$SQL->query("SET NAMES 'utf8mb4'");