On 4/2/02 7:51 PM, Bob T <[EMAIL PROTECTED]> wrote:

Hi Bob,

> In order to have perl work as a cgi scripter are any modules besides CGI.pm
> actually needed??

You need no modules. All you need is a web server with a perl interpreter
For instance, the following uses no modules:

#!/usr/bin/perl

print <<_HTML_;
Content-type: text/html

<html>
<head>
<title>test</title>
</head>
<body>
<h1>test</h1>
<p>This is a test page.</p>
</body>
</html>
_HTML_

# end

CGI.pm only simplifies some aspects of perl-written CGI scripts, such as
reading POST input.

I am, of course, assuming that, by "have perl work as a cgi scripter", you
mean "write CGI scripts in perl".

hth,
-- 
Michael


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to