in reply to RE: Re: Tutorials
in thread Tutorials for CGI.pm
Original poster, my humble advice is:
in place of cgi-lib, &ReadParse, and &PrintHeader. The rest of the script will be the same. Immediate advantage is to be able to test your scripts off-line.use CGI; $page = new CGI; CGI::ReadParse(); print $page->header; #Rest of stuff here
|
|---|