in reply to Using CGI.pm
as a CGI script and see if it works. You'll get an "Internal Server Error", and an entry in the error log saying something to the effect of "could not locate CGI.pm" if CGI.pm is not there.use CGI qw/:standard/ ; print header() ; print start_html() print "Hello World" print end_html() ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
2Re: Using CGI.pm
by jeffa (Bishop) on Nov 18, 2003 at 16:03 UTC | |
|
Re: Re: Using CGI.pm
by CountZero (Bishop) on Nov 18, 2003 at 16:50 UTC |