Well, I have to first point out that loading an entire file into memory via an array isn't going to be very efficient for large files.

That said, if you have an array and want to selectively flag certain members of the array to do something with them (like delete or move them or whatever), you could use a button like so:
CODE
<form>
blah blah row 4
<input type="hidden" name="row[4]" value="TRUE"><input type="submit">
</form>
bear in mind, however, that with the resulting $row array will only have one value, so don't treat it as an index even though it is numeric -- just treat it as an associative array with a numeric key.
The easiest way is to just use
array_keys() on the $row array, then snag the first value out of the resulting (flattened, non-associative) array.
Instead of hidden input with a button after each column, I suggest checkboxes and one button at the end:
CODE
<form>
<input type="checkbox" name="row[4]" value="TRUE">blah blah row 4
<input type="checkbox" name="row[5]" value="TRUE">blah blah row 5
...
<input type="submit">
</form>
Again, array_keys() will flatten $row, then you can just iterate with a
for() loop to see what got checked.
hth.