in reply to Re^2: cgi-lib.pl
in thread cgi-lib.pl
with:require("cgi-lib.pl") print &PrintHeader; &ReadParse(*form_data);
But I'm not sure I'm doing you a favor by telling you that. You really should start by learning something about perl and CGI. Just copying scripts and code snippets is likely to get you into trouble.use CGI; print CGI::header(); my %form_data = CGI::Vars;
|
|---|