in reply to Re^3: Passing a lot of form values
in thread Passing a lot of form values

By adding the hash to a list, I mean generate an array of hashes. Presuming you generate an array of hashes that looks like this:
@listOfHashes = { { qty => 1, number => 2, stock => 3, } { qty => 7, number => 8, stock => 9, } }
You would access members of that list like this:
print "$listOfHashes[1]{qty}";
This would print the number 7.