Fellow PERLians,
Thanks so much for all your help in advance. I have a rather vexing problem.
I'm trying to construct a hash of hashes from data sent to a script from a
form. I've already parsed the arrays @data and @model to the point I want
them. This is the code that fails me:
$i=0;
for $fields(split /&/, @data) {
($key, $value) = split /=/, $fields;
$bigData{$model[$i]}{$key} = "$value";
$i++;
}
It won't print out @data or @model from anywhere inside the for loop and
won't print out specific dereferencing like "$bigData{307}{Price}.
Any ideas anyone?
Camilo Gonzalez
[EMAIL PROTECTED]
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]