<?php $forasp = strtolower($_SERVER[‘HTTP_USER_AGENT‘]); if(strpos($forasp,‘mobile‘)==true) { echo "The Client is Mobile!"; }else { echo "The Client is PC!"; } ?>
2022-03-11 03:53:30
<?php $forasp = strtolower($_SERVER[‘HTTP_USER_AGENT‘]); if(strpos($forasp,‘mobile‘)==true) { echo "The Client is Mobile!"; }else { echo "The Client is PC!"; } ?>