Mega Code Archive

 
Categories / Php / HTML
 

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>