Get Browser and Platform : HTTP_USER_AGENT « HTML « PHP






Get Browser and Platform

 
<html>
 <head>
  <title>Get Browser &amp; Platform</title>
 </head>
 <body>

 <?php
  $viewer = getenv( "HTTP_USER_AGENT" );
  echo( "Browser details:<br>$viewer" );
 ?>

 </body>
</html>
  
  








Related examples in the same category

1.Browser Detection
2.Browser content
3.Determining client operating system and browser
4.Welcome Page with HTTP_USER_AGENT
5.Reporting the User Agent and Referrer