Answers for "check which device is used to open webpage php"

PHP
0

check which device is used to open webpage php

require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;

// Any mobile device (phones or tablets).
if ( $detect->isMobile() ) {
  
}

// Any tablet device.
if( $detect->isTablet() ){
 
}
Posted by: Guest on October-01-2020

Code answers related to "check which device is used to open webpage php"

Browse Popular Code Answers by Language