12 lines
195 B
PHP
12 lines
195 B
PHP
|
|
<?php
|
||
|
|
define("IN_XSS_PLATFORM",true);
|
||
|
|
|
||
|
|
if(!defined('IN_XSS_PLATFORM')) {
|
||
|
|
exit('Access Denied');
|
||
|
|
}
|
||
|
|
require_once("config.php");
|
||
|
|
require_once("functions.php");
|
||
|
|
require_once("dio.php");
|
||
|
|
//to do
|
||
|
|
|
||
|
|
?>
|