> I'm trying to pass some parameters from one script to another. I know > there's some perl module which can do that. But it's not install in > the system and I don't have the permission to install it either. Is > there any other way to do it? > > Virginia
You don't need access to the common library directories to be able to install modules. Create your own directory, install the modules into it and add use lib '/path/to/my/lib/directory'; on top of the scripts that need one of those libraries. To encode the values so that they may be passed in the query string you may use eg. CGI::Enurl ( http://Jenda.Krynicky.cz ) use CGI::Enurl; print "Location: http://www.yourserver.com/cgi-bin/script.pl?".enurl( \%params); To install it you only have to copy Enurl.pm into /path/to/my/lib/directory/CGI directory. Jenda =========== [EMAIL PROTECTED] == http://Jenda.Krynicky.cz ========== There is a reason for living. There must be. I've seen it somewhere. It's just that in the mess on my table ... and in my brain. I can't find it. --- me -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]