require_once './Mobile_Detect.php';
$detect = new Mobile_Detect;
if($detect->isMobile()){
// header('Location: http://127.0.0.1/MobileDetect/MobileDetect/mobile.html', true, 301);
//echo "mobile";
define('APP_PATH','./mb/Application/');
}else{
// header('Location: http://127.0.0.1/MobileDetect/MobileDetect/pc.html', true, 301);
//echo "pc";
define('APP_PATH','./Application/');
}
