Merhaba arkadaşlar, telefondan siteme girilince şöyle bir ekran çıksın ve android/iOS uygulamalara yönlensin istiyorum. Bunu nasıl yaparım?
Mobilden siteme girince böyle olsun |
3 Mesajlar | 854 Okunma |
//Mobil tespiti
$hua = $_SERVER["HTTP_USER_AGENT"]; // ziyaretçi bilgilerini aldık
$iphone = strpos($hua, "iPhone"); // iPhone için
$ipad = strpos($hua, "iPad"); // iPad için
$android = strpos($hua, "Android"); // Android için
$palmpre = strpos($hua, "webOS"); // Palmpre için
$berry = strpos($hua, "BlackBerry"); // BlackBerry için
$ipod = strpos($hua, "iPod"); // iPod için
if ($iphone == true || $android == true || $palmpre == true || $berry == true || $ipod == true || $ipad == true){
header('Location: http://siteadi.com/mobiluygulamalar.html ');
} else {
//
}
?>
//Mobil tespiti
$hua = $_SERVER["HTTP_USER_AGENT"]; // ziyaretçi bilgilerini aldık
$iphone = strpos($hua, "iPhone"); // iPhone için
$ipad = strpos($hua, "iPad"); // iPad için
$android = strpos($hua, "Android"); // Android için
$palmpre = strpos($hua, "webOS"); // Palmpre için
$berry = strpos($hua, "BlackBerry"); // BlackBerry için
$ipod = strpos($hua, "iPod"); // iPod için
if ($iphone == true || $android == true || $palmpre == true || $berry == true || $ipod == true || $ipad == true){
header('Location: http://siteadi.com/mobiluygulamalar.html ');
} else {
//
}
?>