[Date Prev][Date Next][Thread Prev][Thread Next] [Search] [Date Index] [Thread Index]

Re: [MacPerl] compiling error




sadieo@itsa.ucsf.EDU (Sadie O. McFarlane) writes:

} #!/usr/local/bin/perl
} #---------------
} #program for sending form results
} #------------
} 
} $mailprog = '/usr/lib/sendmail' # <--  missing semicolon
} 
} print "Content-type: text/html\n\n";
} 

# Another syntax error: The colon below should be a semi-colon.

} if ($ENV{'REQUEST_METHOD'} eq "get") { $buffer = @ENV{'QUERY_STRING'}: }
} else { read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'}); }

Erin Shaw