in reply to Re: Array Problem
in thread Array Problem
Should be one of the following:
As you wrote it, $entry[7] would simply overwrite the last element in the array instead of tacking itself onto the end.$certs[@certs] = $entry[7]; # OR push(@certs,$entry[7]);
-Blake
|
|---|