CGI magic help

Mike Starke plug-discuss@lists.plug.phoenix.az.us
Wed, 4 Jun 2003 13:44:14 -0500


On Wed, Jun 04, 2003 at 10:12:34AM -0700, Don Calfa wrote:
/_Thanks all.  The problem was actually in the script itself.  If I had 
/_the code immediately after:
/_
/_#!/usr/bin/perl
/_print <<EOF;
/_Content-type: text/html
/_
/_EOF
/_
/_I got the error except in Windows.
/_
/_
/_#!/usr/bin/perl
/_
/_print <<EOF;
/_Content-type: text/html
/_
/_EOF
/_
/_was fine.
/_

I am an idiot when it comes to this stuff, but:
Isn't this what 'use CGI ...;' is for?

#for instance,
use CGI qw(:standard);
#Then, I can do this
print header;

I figured using CGI allows me to not worry about
some of the issue(s) you just described. Have I read
this wrong?

-mike