Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/05/2002, 03:58
mortadelo
 
Fecha de Ingreso: diciembre-2001
Mensajes: 28
Antigüedad: 23 años, 1 mes
Puntos: 0
Re: Variable o saber el navegador donde ejecuto el CGI

Para detectar el navegador con un cgi utiliza las variables de entorno.
EN PERL:
#/usr/bin/perl
print 'Content-type:text/html\n\n';
print '<H1>Detectar navegador</H1><br;
print 'HTTP_USER_AGENT =
$ENV{HTTP_USER_AGENT}<br>';