Re: Create an array

2004-01-01 Thread Mike Blezien
Hi Rob, Glad to see I'm not the only one hard at it today ;) Anyway, with a few minor tweaks and your helpfully suggestion below, I got it working perfectly now thanks abunch, much appreciated. Cheers ;-) -- MikeBlezien =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Thunder Rain Internet Publishi

Re: Create an array

2004-01-01 Thread Rob Dixon
Mike Blezien > > a happy new year... but some of us have to work on the holiday ;) > > Got a code here that I need to generate an array so it can be used further down > in the script. Here is the code snip > ### START OF CODE # > my @membership = $cgi->

Create an array

2004-01-01 Thread Mike Blezien
Hello, a happy new year... but some of us have to work on the holiday ;) Got a code here that I need to generate an array so it can be used further down in the script. Here is the code snip ### START OF CODE # my @membership = $cgi->param('membership'

Help find info for CPAN update config questions

2004-01-01 Thread J Ingersoll
Hi, In the normal process of updating from a CPAN repository, a message came up saying there was a new version, to install Bundle::CPAN. Ok so I did that. $ sudo perl -MCPAN -e 'install Bundle::CPAN' . it gets to setting up some config values. E.g., what is my local host domain name, wh

Re: from bash to perl; source() equivalent

2004-01-01 Thread Ramprasad A Padmanabhan
Twb wrote: (Please CC: me as I'm not yet on this list.) I have moved / am moving from bash to perl for my misc scripts. I am still at a loss as to how to do source() (a.k.a. `.') in perl. e.g. #/bin/bash . ~/.foorc #or source ~/.foorc while (bar); do baz; done -trent Read about require

from bash to perl; source() equivalent

2004-01-01 Thread twb
(Please CC: me as I'm not yet on this list.) I have moved / am moving from bash to perl for my misc scripts. I am still at a loss as to how to do source() (a.k.a. `.') in perl. e.g. #/bin/bash . ~/.foorc #or source ~/.foorc while (bar); do baz; done -trent --