← Quay lại | ⬇️ Download | ▶️ Chạy file này (Tab mới)
<?php
function loadClass($c)
{
include ROOT."/classes/".$c.".class.php";
}
function getIndex($index, $value='')
{
$data = isset($_GET[$index])? $_GET[$index]:$value;
return $data;
}
function postIndex($index, $value='')
{
$data = isset($_POST[$index])? $_POST[$index]:$value;
return $data;
}
function requestIndex($index, $value='')
{
$data = isset($_REQUEST[$index])? $_REQUEST[$index]:$value;
return $data;
}