Browser And Operating System Detection Script

<html>
<head>
   <title></title>
</head>
<body>

<?php
$viewer = getenv( "HTTP_USER_AGENT" );
$browser = "An unidentified browser";
if( preg_match( "/MSIE/i", "$viewer" ) )
{
$browser = "Internet Explorer";
}
else if( preg_match( "/Netscape/i", "$viewer" ) )
{
$browser = "Netscape";
}
else if( preg_match( "/Mozilla/i", "$viewer" ) )
{
$browser = "Mozilla";
}
$platform = "An unidentified OS!";
if( preg_match( "/Windows/i", "$viewer" ) )
{
$platform = "Windows!";
}
else if ( preg_match( "/Linux/i", "$viewer" ) )
{
$platform = "Linux!";
}
echo("You are using $browser on $platform");
?>

</body>
</html>

Previous
Next Post »

1 comments:

Click here for comments
1 November 2019 at 01:43 ×

Its looks something great!

Cheap Web Hosting India
Best Reseller hosting india
Cheap windows hosting india
Cheap dedicated servers

Congrats bro googlewebmastercentral you got PERTAMAX...! hehehehe...
Reply
avatar