I am trying to setup an array like this:

Lets say that $RecCount has been set alreay as a numeric VAL.

code:
$Array[$RecCount]  

Now I am trying to use the array like this:

code:
$Index = 0
$Line = ReadLine(Something)
while @ error = 0
$Array[$Index] = $Line
$Index = $Index +1
$Line = ReadLine (Something)
Loop

It seems I am doing something wrong with the array index.. can anyone help me with this.

Thanks
_________________________
Austin Henderson