PHP Classes

File: browser

Recommend this page to a friend!
  Classes of Claudio Adonai Muto   LSM Browser Type   browser   Download  
File: browser
Role: Example script
Content type: text/plain
Description: example
Class: LSM Browser Type
Identify the user browser and operating system
Author: By
Last change:
Date: 18 years ago
Size: 419 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>:: LSM BrowserType ::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<?
 
include "LSMBrowserType.class.php";
 
$brtype = new LSMBrowserType();
  echo
"Browser type : ".$brtype->getBrowsername()."<BR>" ;
  echo
"OS name : ".$brtype->getOSname() ;
 
?>
</body>
</html>