in reply to Re: CGI , HTML
in thread CGI , HTML

Actually, if you have permissions to put any perl script up on your web site, then you have permissions to put up Modules, just not in the "normal" place.

Try this:
* make a dir called myModules
* make a dir called HTML inside it
* copy Template.pm into it from CPAN (or do it the proper way and have the installer install into your myModules dir)
* In your script do:

# use lib "myModules"; #this example uses a relative path use HTML::Template; # do real stuff here

-------------------------------------
Nothing is too wonderful to be true
-- Michael Faraday

Replies are listed 'Best First'.
3Re: CGI , HTML
by jeffa (Bishop) on Oct 25, 2003 at 13:01 UTC