How did you exclude IE6 ?
Hello,
It is technically interesting but how did you do it? Exclude IE6 browsers viewing your website and pages! Did you have to programme your header page?
Hello,
It is technically interesting but how did you do it? Exclude IE6 browsers viewing your website and pages! Did you have to programme your header page?
We added a simple script that checks the header for browser version and redirects. The script is implemented in the php code.
Browser detection is a thorny subject to say the least as headers can be manipulated, but a simple method of detection in php would like like this:
<?php
// get the User Agent
$user_agent = getenv("HTTP_USER_AGENT");
// check if identified as Internet Explorer
if (preg_match("/MSIE/i", $user_agent))
{
// do IE stuff
}
else
{
// do non ie stuff
}
?>
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.