CGI magic help

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Mike Starke
日付:  
題目: CGI magic help
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