// 携帯判別 $agent = $_SERVER['HTTP_USER_AGENT']; $mobile = 0; if(ereg("^DoCoMo", $agent)){ $mobile = 1; }else if(ereg("^J-PHONE|^Vodafone|^SoftBank", $agent)){ $mobile = 2; }else if(ereg("^UP.Browser|^KDDI", $agent)){ $mobile = 3; } if ($mobile != 0){ header("Location: https://www.t-basic.com/sites/touzan/m/mailmag.html"); exit(); } ?>