in reply to Re^3: Passing a lot of form values
in thread Passing a lot of form values
You would access members of that list like this:@listOfHashes = { { qty => 1, number => 2, stock => 3, } { qty => 7, number => 8, stock => 9, } }
This would print the number 7.print "$listOfHashes[1]{qty}";
|
|---|