PHP Classes

File: example1.php

Recommend this page to a friend!
  Classes of Md. Shahadat Hossain Khan Razon   Browser Environment Detection   example1.php   Download  
File: example1.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: Browser Environment Detection
Detect browser size and other characteristics
Author: By
Last change:
Date: 11 years ago
Size: 850 bytes
 

Contents

Class file image Download
<?php

session_start
();

$path=dirname(__FILE__).'/';
include_once
$path.'client_browser_detection.php';

if(isset(
$_GET['dochk'])){
    unset(
$_SESSION);
   
header('location: '.$_SERVER['PHP_SELF']); exit();
}

$browser=new clientBrowserDetection(true);


?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Browser detection</title>
<?=$browser->browser_detection_js_meta?>
</head>

<body>
<p><a href="<?=$_SERVER['PHP_SELF']?>?dochk=yes">Check Again</a> | <a href="index.php">Back to Example Index</a></p>
<pre>
<?php #print_r($browser_info_php); ?>
<?php print_r
($browser->getBrowserInformation()); ?>
</pre>

</body>
</html>