<?php
//Detect special conditions devices
$iPod = stripos($_SERVER['HTTP_USER_AGENT'],"iPod");
$iPhone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");
$iPad = stripos($_SERVER['HTTP_USER_AGENT'],"iPad");
$Android = stripos($_SERVER['HTTP_USER_AGENT'],"Android");
$webOS = stripos($_SERVER['HTTP_USER_AGENT'],"webOS");
//do something with this information
if( $iPod || $iPhone ){
include("indexmobil.php");
}else if($iPad){
include("indexmobil.php");
}else if($Android){
include("indexmobil.php");
}else if($webOS){
include("indexpc.php");
}else{
include("indexpc.php");
}
?>
Bu kodu index.php ye koyarsan, Cihaza göre ilgili indexe yönlendirilir. Yardımcı olabildiysem bir R10+'nı alırım