// Include and instantiate the class. require_once 'lib/Mobile_Detect.php'; $detect = new Mobile_Detect; // Any mobile device except tablets get redirected... if ( $detect->isMobile() && !$detect->isTablet() ) { header( 'Location: kcslmobile.htm' ) ; } ?>