- or download this
@trial_array = ("first", "second", "third");
- or download this
$sec_el = $trial_array[1];
- or download this
"this is a data file.
This ie read in array.
this is looped through"
- or download this
$datafile = datacapture.cgi;
open(DAT, $datafile);
@data_array = <DAT>;
- or download this
foreach $loopvariable (@data_array)
{
print $loopvariabe ;
}