in reply to Perl...CGI...Things I want to do
You need to learn some HTML as well as Perl and CGI.pm. One recommended starting point is Ovid's CGI Course. To get you going with code, start your cgi program like this:
The -wT flags tuurn on warnings and taint mode. It is a pain in the neck sometimes, but it will save you time and grief. The 'use strict;' line has a similar purpose. The 'use CGI;' is to save you work and avoid pitfalls. It's uses are covered in 'perldoc CGI'.#!/usr/bin/perl -wT use strict; use CGI;
You can find lots of help by browsing the Tutorials and Outside Links pages here.
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Perl...CGI...Things I want to do
by ellem (Hermit) on Oct 05, 2001 at 03:13 UTC |