in reply to Re: CGI.pm and W3C
in thread CGI.pm and W3C

I need the CGI.pm functions as well so I can get input from forms. I suppose I could have a script to do the outputting (w/ templates) and a script to read the input (w/ CGI.pm). How does this solution hold up in the real world?

-Ben Jacobs (dooberwah)
http://dooberwah.perlmonk.org
"one thing i can tell you is you got to be free"

Replies are listed 'Best First'.
Re^3: CGI.pm and W3C
by stephen (Priest) on Apr 08, 2002 at 22:21 UTC

    There is no harm at all in using CGI.pm just to read the input... since it's self-loading, the HTML functions only get loaded if you use them, so there's little penalty in using both CGI and templates in the same script.

    Check out the Template Toolkit for a very flexible templating system.

    stephen

Re: (dooberwah) Re: Re: CGI.pm and W3C
by gav^ (Curate) on Apr 08, 2002 at 22:33 UTC