Re: a mystery.. need help

2005-05-30 Thread Luinrandir Insight
ok.. thanks and since thats not me.. i'm gone. Lou - Original Message - From: "jonathan vanasco" <[EMAIL PROTECTED]> To: "Luinrandir Insight" <[EMAIL PROTECTED]> Cc: Sent: Monday, May 30, 2005 9:23 AM Subject: Re: a mystery.. need help > This l

Re: a mystery.. need help

2005-05-30 Thread jonathan vanasco
This list is just about mod_perl -- the apache module that integrates a perl interpreter into apache To learn about apache modules, look on a website like perlmonks.com On May 29, 2005, at 10:10 PM, Luinrandir Insight wrote: OK.. first .. if I have the wrong list.. if this list is just about

Re: a mystery.. need help

2005-05-30 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 1. To parse Parameters you should use: ~ a) CGI.pm ~ ---8<--- ~ my $q = new CGI(); ~ my %form; ~ foreach( $q->param() ) { ~ $form{$_} = $q->param($_); ~ } ~ -

Re: a mystery.. need help

2005-05-29 Thread Luinrandir Insight
OK.. first .. if I have the wrong list.. if this list is just about moduals and apache please forgive. I thought this list was about moduals, which I am just learning about. This is a subroutine that is going to go into a package/modual once I get it working. ALSO... perl is my HOBBY my backgro

[OT] Re: a mystery.. need help

2005-05-29 Thread Frank Maas
Hi, (a) this is a modperl list. your question seems a general perl issue, please use the appropriate channels for this - not this list. (b) whatever channel you choose for your question, be sure to give information about what you are trying to achieve, what goes wrong, what you tried to solve t

Re: a mystery.. need help

2005-05-28 Thread David Dick
what is it supposed to do? Luinrandir Insight wrote: Hallo group.. any idea why this line is bad? Lou foreach $v0(0 .. 150) { if ($Data[$v0] ne "") { $Data[$v0] = $form{Data($v0)}; this line is bad! ! ! ! ! } print qq|Data($v0) = $Data[$v0

a mystery.. need help

2005-05-28 Thread Luinrandir Insight
Hallo group.. any idea why this line is bad? Lou foreach $v0(0 .. 150) { if ($Data[$v0] ne "") { $Data[$v0] = $form{Data($v0)}; this line is bad! ! ! ! ! } print qq|Data($v0) = $Data[$v0]|; } }