/**************************************************
*
* IsNetscape
* Laurent Lacroix, 11/02/2001 19:25
*
* Déterminer si la requête cliente est issue de Netscape
*
* @return TRUE ou FALSE suivant que le browser client est ou non NetScape
*
* @see IsInternetExplorer
*
*************************************************/
Function IsNetscape()
{
//
// Si on trouve "MOZILLA" dans la chaîne HTTP_USER_AGENT
// Pas très joli, mais ca fonctionne ...
//
return ( ! IsInternetExplorer() && eregi( "MOZILLA", GetEnv( "HTTP_USER_AGENT" ) ) );
}
|