Re: Hashes and hashes of hashes

2001-06-26 Thread Randal L. Schwartz
> "Philip" == Philip Peeters <[EMAIL PROTECTED]> writes: Philip> %newdata = (); Philip> $newdata{$TAG} = $co->param('account'); Philip> $newdata{$TAG}[0] = $co->param('initsearch'); Philip> $newdata{$TAG}[1] = $co->param('team'); Philip> $newdata{$TAG}[2] = $co->

Re: Hashes and hashes of hashes

2001-06-26 Thread Curtis Poe
--- Philip Peeters <[EMAIL PROTECTED]> wrote: > %newdata = (); > $newdata{$TAG} = $co->param('account'); > $newdata{$TAG}[initsearch] = $co->param('initsearch'); > $newdata{$TAG}[team] = $co->param('team'); > $newdata{$TAG}[website] = $co->param('website'); There are

Re: Hashes and hashes of hashes

2001-06-26 Thread Casey West
On Tue, Jun 26, 2001 at 04:32:35PM -0700, Philip Peeters wrote: : When my script is called, I parse in some variables. I want to build : a hash where the one variable will function as the a key of the hash : and the other variables must be referenced by again a reference.. Confused? : Me too. Exam

Hashes and hashes of hashes

2001-06-26 Thread Philip Peeters
Hi, First of all thanks for the references to the Storables module to dump a hash/array into a file so other cgi's can use this hash/array too. It works great! But I ran into another issue (I think it's just a syntax issue, but I'm not sure I'm appraoching this correctly): When my script is cal