in reply to cgi theory
if you whant to use the cgi module you can do this:print "Content-type: text/html\n\n";
maybe you want to take a look in the O´Reilly Perl CGI book.use CGI; my $cgi = new CGI; print $cgi->header( "text/html" ); .... do stuff here .... print $cgi->end_html;
so, have a nice time coding perl...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
2Re: cgi theory
by jeffa (Bishop) on Sep 16, 2003 at 15:04 UTC |