عرض مشاركة مفردة
 
  #5  
قديم 23-04-2007, 01:35 PM
amrsaber amrsaber غير متصل
عضو
 
تاريخ التسجيل: Nov 2006
مشاركة: 40
مستوى تقييم العضوية: 0
amrsaber is on a distinguished road
الافتراضي

هذا الكود يستخدم لتحويل المستخدم اذا كان يستخدم جهاز كفى
كود PHP:
<?php
global $userBrowser;

// Your wapsite
//enter the link you want user to be redirected in case of WML browser
$wmllink "http://wap.yahoo.com/";

// Your website
//enter the link you want user to be redirected in case of PC browser
$htmllink "http://www.google.com";

//There is no need to edit any information from this point on
//however in case if you want to contribute please do so
//please be sure to let me know about the changes
//Detect the browser
$userBrowser $_SERVER['HTTP_USER_AGENT']; 

//Remove the below // qutoes.
//It helps to check if there is any error when editing
//If everything is all right it will display the browser information
//please remember to put // back after testing or no redirection will occur
//echo $userBrowser;

//Check for Mozilla
if(stristr($userBrowser'Mozilla')) 
{
  
$ub="PC";
}
//Check for Mozilla
elseif(stristr($userBrowser'gecko')) 
{
  
$ub="PC";
}
//Check for opera
elseif(stristr($userBrowser'opera')) 
{
  
$ub="PC";
}
//Check for omniweb
elseif(stristr($userBrowser'omniweb')) 
{
  
$ub="PC";
}
//Check for msie
elseif(stristr($userBrowser'msie')) 
{
  
$ub="PC";
}
//Check for konqueror
elseif(stristr($userBrowser'konqueror')) 
{
  
$ub="PC";
}
//Check for safari
elseif(stristr($userBrowser'safari')) 
{
  
$ub="PC";
}
//Check for netpositive
elseif(stristr($userBrowser'netpositive')) 
{
  
$ub="PC";
}
//Check for lynx
elseif(stristr($userBrowser'lynx')) 
{
  
$ub="PC";
}
//Check for elinks
elseif(stristr($userBrowser'elinks')) 
{
  
$ub="PC";
}
//Check for Mozilla
elseif(stristr($userBrowser'Mozilla')) 
{
  
$ub="PC";
}
//Check for links
elseif(stristr($userBrowser'links')) 
{
  
$ub="PC";
}
//Check for w3m
elseif(stristr($userBrowser'w3m')) 
{
  
$ub="PC";
}
//Check for webtv
elseif(stristr($userBrowser'webtv')) 
{
  
$ub="PC";
}
//Check for amaya
elseif(stristr($userBrowser'amaya')) 
{
  
$ub="PC";
}
//Check for dillo
elseif(stristr($userBrowser'dillo')) 
{
  
$ub="PC";
}
//Check for ibrowse
elseif(stristr($userBrowser'ibrowse')) 
{
  
$ub="PC";
}
//Check for icab
elseif(stristr($userBrowser'icab')) 
{
  
$ub="PC";
}
//Check for crazy browser
elseif(stristr($userBrowser'crazy browser')) 
{
  
$ub="PC";
}
//Check for IE
elseif(stristr($userBrowser'internet explorer')) 
{
  
$ub="PC";
}
//If it's not any of the above browsers
//Then it gotta be a WML or very unpopular browser
else
{
  
$ub="WML";
  }
//Code for redirecting based upon the results
if($ub == "PC") {
    
header("Location: ".$htmllink);
    exit;
    }
    else 
    {
    
header("Location: ".$wmllink);
    exit;
    }
    
?>






التوقيع
We Rock The Web
® amrsaber


amrsaber247[at]hotmail[dot]com