Most recent editions of Perl come with the CGI module, which is what you want. Type "perldoc CGI" at your friendly neighborhood command prompt. The O'Reilly book "CGI Programming with Perl" has a good overview, as do no doubt countless other books.
The basic steps are: use CGI; my $cgi = new CGI; # Optional O-O interface print $cgi->header, $cgi->start_html("My Page"); print $cgi->param("foo"); # print value of "foo" param print $cgi->end_html; Note that you can also use it to output the HTML response, although you don't have to. More details in documentation. - John --- Conan Chai <[EMAIL PROTECTED]> wrote: > hi, > > are there any perl modules that splits the http > request headers into name/value pairs? > > Conan > It Will Come To Us !!! > [EMAIL PROTECTED] > __________________________________________________ Do You Yahoo!? Yahoo! Games - play chess, backgammon, pool and more http://games.yahoo.com/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]