PHP קוד:
function agent($browser)
{
$useragent = $_SERVER['HTTP_USER_AGENT'];
return strstr($useragent,$browser);
}
if((agent("iPhone") != FALSE) || (agent("iPad") != FALSE) || (agent("Android") != FALSE) || (agent("iPod") != FALSE))
{ ?>
MOBILE CODE GOES HERE
<? } else {
?>
PC code goes here
<? }