אשכול: קוד מתחלף
View Single Post
ישן 18-03-12, 11:48   # 2
Kernel
אושיית הוסטינג
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: בקעת אונו
הודעות: 2,429

Kernel לא מחובר  

PHP קוד:
function agent($browser)
{
$useragent = $_SERVER['HTTP_USER_AGENT'];
return strstr($useragent,$browser);
}
if((agent("iPhone") != FALSE) || (agent("iPad") != FALSE) || (agent("Android") != FALSE) || (agent("iPod") != FALSE))
{ ?>
MOBILE CODE GOES HERE
<? } else { 
?>
PC code goes here 
<? }
__________________
אבי
  Reply With Quote