RESSOURCES 
 
Détection d'Internet Explorer
Fourni par SQLI 21 mai 2001
 
 

 

/********************************************************************
 *
 * IsInternetExplorer
 * Laurent Lacroix, 11/02/2001 19:23
 *
 * Déterminer si la requête cliente est issue d'Internet Explorer
 *
 * @return TRUE ou FALSE suivant que le browser client est ou non IE
 *
 * @see 
 *
 *******************************************************************/

Function IsInternetExplorer() 
{
    //
    // Si on trouve MSIE dans la chaîne HTTP_USER_AGENT
    // Pas très joli, mais ca fonctionne ...
    //
    return eregi( "MSIE", GetEnv( "HTTP_USER_AGENT" ) );
}
 
Accueil | Haut de page