Hi,
Well you can determine a user's login name with the htaccess popup field from a cgi script, this simply by using the %ENV, with this you can get the enviroment vars for that "session".
e.g.
$ENV{'REMOTE_USER'}
Same goes for IP and browser etc etc etc ...
if you want a list, put this in a script:
foreach $key (sort keys %ENV)
{
print "$key\n<br>"
}
Grtz Funs
funs@euro.net