if( !function_exists('mobile_user_agent_switch') ){
function mobile_user_agent_switch(){
$device = '';
if( stristr($_SERVER['HTTP_USER_AGENT'],'ipad') ) {
$device = "ipad";
} else if( stristr($_SERVER['HTTP_USER_AGENT'],'iphone') || strstr($_SERVER['HTTP_USER_AGENT'],'iphone') ) {
$device = "iphone";
} else if( stristr($_SERVER['HTTP_USER_AGENT'],'blackberry') ) {
$device = "blackberry";
} else if( stristr($_SERVER['HTTP_USER_AGENT'],'android') ) {
$device = "android";
}
if( $device ) {
echo 'This is a special message to all my MOBILE device users!';
} else {
echo 'This is a special message to all my DESKTOP users!';
}
}
}
<link type="text/css" rel="stylesheet" media="only screen and (min-device-width: 1224px)" href="hidesomemodules.css">
<link type="text/css" rel="stylesheet" media="only screen and (min-device-width: 1224px)" href="hidesomemodules.css">
Time to create page: 0.061 seconds