<?php
$forasp = strtolower($_SERVER['HTTP_USER_AGENT']); if(strpos($forasp,'mobile')==true)
{
echo "The Client is Mobile!";
}else
{
echo "The Client is PC!";
}
?>
<?php
$forasp = strtolower($_SERVER['HTTP_USER_AGENT']); if(strpos($forasp,'mobile')==true)
{
echo "The Client is Mobile!";
}else
{
echo "The Client is PC!";
}
?>