Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Re: Problems with sticky CGI params

by sifukurt (Hermit)
on Oct 23, 2001 at 18:15 UTC ( [id://120788]=note: print w/replies, xml ) Need Help??


in reply to Re: Problems with sticky CGI params
in thread Problems with sticky CGI params

More than likely, CGI.pm is already installed on your system. If for some reason it isn't, yes, it would probably make life a little easier for it to be installed, but you can use a private copy, provided you use lib at the top of your script. For example:
#!/usr/bin/perl use lib "/my/module/directory"; use CGI;

Perl will then look in your specified directory for the module before looking through the the default directories in @INC.

As far as re-coding if you use CGI.pm goes, the short answer is technically, no, you don't have to re-code everything. Others may disagree with me, but personally, I'd be inclined to just use CGI.pm for the parts in question for the time being. Once you get it working, dig into CGI.pm a bit further and see if there are ways to make your script better and more efficient by taking advantage of more of the features of CGI.pm.

That's my 8**(1/3) cents. Hope that helps.
___________________
Kurt

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://120788]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-04-19 11:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found