iphoneの振り分けの履歴

iphoneflash再生できないんですね。

しょうがないんでfull_flashのページ様に別に別テンプレートを用意してごっそり分岐しましょ。

調べたら、phpだとこんな感じ。

<? php
$ua = $_SERVER['HTTP_USER_AGENT'];
if ((ereg("iPhone",$ua)) || (ereg("iPod",$ua))) :
include('iphone.html');
else :
include('other.html');
endif;
?>