1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
  | 
			$useragents = array ( 
'Palm' ,
'Nokia' ,
'Samsung' ,
'Motorola' ,
'iPhone' ,
'iPad' ,
'Smartphone', 
'Windows CE' ,
'Blackberry' ,
'WAP' ,
'SonyEricsson',
'PlayStation Portable', 
'LG', 
'MMP',
'OPWV',
'Symbian',
'EPOC',
); 
foreach ( $useragents as $useragents )
{
 if(strpos($_SERVER['HTTP_USER_AGENT'], $useragents) !== false)
	{
		$ismobile = 1;
	}
}
if(strpos($_SERVER['HTTP_ACCEPT'], "text/vnd.wap.wml") !== false)
         {
                $ismobile = 1;
         }
if($ismobile == 1)
       {
              //mobile compatible template
        }
else
       {
             //pc compatible templates
      } 
  |