in reply to HTTP/CGI Environmnet Variables

#!/usr/bin/perl use strict; print "content-type:text/html\n\n"; print "<body bgcolor=black text=white>"; print "<table wigth=70% bgcolor=#000000 align=center>"; print "<tr><td>$_</td><td align=center bgcolor=#222222>$ENV{$_}</td></ +tr>" for keys %ENV; print "</table>";


Replies are listed 'Best First'.
Re^2: HTTP/CGI Environmnet Variables
by intranetman (Acolyte) on Mar 01, 2005 at 22:48 UTC
    Thanks for the help all. Based on the specifications I now have a more correct setup to store the required information. I'm having some issues getting the browser-type, but I think I can work them out.

    Thanks for the insight and direction. I'll let you know if I can retrieve the other information since HTTP provides it.