Login   Register  
PHP Classes
elePHPant
Icontem

File: browser

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-04-29 12:54
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>