mobile test

// Include and instantiate the class.

require_once '/home/fede/econlink/sites/all/libraries/Mobile_Detect/Mobile_Detect.php';

$detect = new Mobile_Detect;

// Any mobile device (phones or tablets).

if ( $detect->isMobile() ) {

?>

mobile



}

if( $detect->isTablet() ){

?>

tablet

}


if( !$detect->isTablet() && !$detect->isTablet()){

?>

desktop

}

?>