iphoneの振り分け
しょうがないんでfull_flashのページ様に別に別テンプレートを用意してごっそり分岐しましょ。
調べたら、phpだとこんな感じ。
>|php|
<? php
$ua = $_SERVER['HTTP_USER_AGENT'];
if (ereg("iPhone",$ua) || (ereg("iPod",$ua))) :
include('iphone.html');
else :
include('other.html');
endif;
?>
||<
しょうがないんでfull_flashのページ様に別に別テンプレートを用意してごっそり分岐しましょ。
調べたら、phpだとこんな感じ。
>|php|
<? php
$ua = $_SERVER['HTTP_USER_AGENT'];
if (ereg("iPhone",$ua) || (ereg("iPod",$ua))) :
include('iphone.html');
else :
include('other.html');
endif;
?>
||<