in reply to Re: Question with Dynamically Creating arrays.
in thread Question with Dynamically Creating arrays.
i use the $key and create a hash value which i then make it point to an array. By doing this i have my structure unique to the key. something like :%struct;
So now $struct points to an array, and also has the key as i wanted.push(@{$struct{$key}},"value") or // i passed the reference n added the values to the array add(\@{$struct{$key}});
|
|---|