in reply to Re: Iterating two co-dependant arrays
in thread Iterating two co-dependant arrays

It looks like you need to either use a hash, or if the keys repeat then use an array of arrays.

A hash would be better in both cases; if keys repeat then use a hash of arrays. Or a database. Sqlite has excellent performance and is very easy to set up.

  • Comment on Re^2: Iterating two co-dependant arrays