# # Just Junk Just Junk Just Junk # package Apache::lontest; use strict; use Apache::Constants qw(:common :http); sub handler { my $r = shift; $r->content_type('text/html'); $r->send_http_header; return OK if $r->header_only; $r->print(''); my $envkey; $->print("

Debugging


\n"); my $i=0; foreach $envkey (sort keys %ENV) { $r->print("$envkey ---- $ENV{$envkey}
"); $i++; } $r->print('

Total Number of Elements: '.$i.'

'); # ------------------------------------------------------------------- End Debug $r->print(''); } 1; __END__