if (strpos($_SERVER["HTTP_USER_AGENT"],'iPhone',1)>0)

{

$mobile_check="iphone";

}

else if (strpos($_SERVER["HTTP_USER_AGENT"],'iPad',1)>0)

{

$mobile_check="iphone";

}

else if (strpos($_SERVER["HTTP_USER_AGENT"],'Android',1)>0)

{

$mobile_check="android";

}

else

{

$mobile_check="web"; 

}