Gooday Note Scrap Source Android login
 
작성일 : 12-04-16 17:42
PHP 모바일 접속 확인
 글쓴이 : 기리 (123.♡.195.24)
조회 : 3,199  
   mobile_device_detect.php (18.8K) [0] DATE : 2012-04-16 17:42:09
<?php
// http://detectmobilebrowsers.mobi/
require_once('mobile_device_detect.php');
$mobile = mobile_device_detect();
// redirect all mobiles to mobile site and all other browsers to desktop site
if($mobile==true){
  header('Location:http:// 모바일 접속경로/tmob.php');
}else{
  header('Location:/pc 접속경로');
}
exit;
?>