1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php error_reporting(0); ini_set('display_errors', 0);
if (session_id() === "") { session_start(); }
ini_set('session.cookie_httponly', 1); header("Content-Type:text/html; charset=utf-8"); header("x-frame-options:SAMEORIGIN"); date_default_timezone_set("Asia/Hong_Kong"); $nowdate = date("Y-m-d H:i:s"); ?>
|