Re: Script won't exec

2001-07-17 Thread Abdulaziz Ghuloum
Hello, > Syntax error near $ENV{'REQUEST_METHOD') Aborted due to compilation {} Why do you have a left brace and a right bracket? Hope this helps,,, Aziz,,, In article <[EMAIL PROTECTED]>, "Customer Service" <[EMAIL PROTECTED]> wrote: > To the Pleth

Re: Repost: Script won't exec

2001-07-17 Thread Paul Johnson
On Tue, Jul 17, 2001 at 03:17:54PM -0600, Customer Service wrote: > #!c:/perl/bin/perl -w > > if ($ENV{'REQUEST_METHOD') eq 'GET') } [You are using a fixed width font, aren't you? The first } should be )] But yes, you should be using CGI.pm. "perldoc CGI" should sh

Re: Repost: Script won't exec

2001-07-17 Thread Jeff Yoak
It looks like you have a ')' where you want a '}' there. Cheers, Jeff At 03:17 PM 7/17/01 -0600, Customer Service wrote: >Syntax error near $ENV{'REQUEST_METHOD') >…Aborted due to compilation errors > > Script follows: >#!c:/perl/bin/perl -w > >if ($ENV{'REQUEST_METHOD') eq 'GET')

Re: Repost: Script won't exec

2001-07-17 Thread Lynn Glessner
> > if ($ENV{'REQUEST_METHOD') eq 'GET') The left brace for 'REQUEST_METHOD' is curly -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Repost: Script won't exec

2001-07-17 Thread Customer Service
Sorry, forgot the code ;) To the Plethora Of Perl Programmers (P.O.P.P), I seek your guidance. First of all, can you tell me what is wrong with this script other than neglecting to “use strict”. (I’m learning) From the command prompt, it says: Syntax error near $ENV{'REQUEST_METHOD

RE: Script won't exec

2001-07-17 Thread Brian
Post some code, somebody will be able to pick up on something perhaps you missed. :o) Can't help without code. Brian Johnson Partner/Systems Administrator/Programmer Source1Hosting.tv, LLC (www.source1hosting.tv) Source1Results.com, LLC (www.source1results.com) I may be insane, but remember - T

Script won't exec

2001-07-17 Thread Customer Service
To the Plethora Of Perl Programmers (P.O.P.P), I seek your guidance. First of all, can you tell me what is wrong with this script other than neglecting to “use strict”. (I’m learning) From the command prompt, it says: Syntax error near $ENV{'REQUEST_METHOD') …Aborted due to compilat