Hello Bradley,

Wednesday, July 11, 2001, Bradley M. Handy <[EMAIL PROTECTED]> wrote:

BMH> #!/path/to/perl

BMH> use CGI;

print CGI->>param();
BMH> print "I'm Working";


BMH> I believe the above lines of code should work just fine.

your script does not print content/type, so it produces error as CGI
script.

#!/usr/bin/perl

use CGI qw(:standard);

print header;
print "I'm Working";


>> Can anyone tell me what is the most basic script that I can load onto a 
>> server to test that it is working?


Best wishes,
 Maxim                            mailto:[EMAIL PROTECTED]


Reply via email to