Jump to content

help with detect and redirect code


azukah

Recommended Posts

i'm trying to use this code to detect if the browser of the user is IE (any version) and id true (if it is IE), then it's redirected to an error page; otherwise, it's ok and sent ot the index. I get the following error...

Warning: Cannot modify header information - headers already sent by (output started at /index.php:1) in /xie.php on line 13

 

any ideas.. ???

 

<?php
function ae_detect_ie()
{
if (isset($_SERVER['HTTP_USER_AGENT']) && 
    (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
        return true;
    else
        return false;
}
if (ae_detect_ie()) {
header("Location: error.php");
} else {
header("Location: index.php");
}
?>

Link to comment
https://forums.phpfreaks.com/topic/209734-help-with-detect-and-redirect-code/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.