in reply to Re: Array Problem
in thread Array Problem

$certs[$#certs] = $entry[7];

Should be one of the following:

$certs[@certs] = $entry[7]; # OR push(@certs,$entry[7]);
As you wrote it, $entry[7] would simply overwrite the last element in the array instead of tacking itself onto the end.

-Blake