What I need to do is get the information from the CSV and manipulate it, ie. asort on a particular field, etc.
There are 4 columns and 19 rows in the csv file. I have used the following line to pull the data in:
while($info=fgetcsv("stu.csv",1000)
as per the fgetcsv page suggests, but if after the completion of the while statement I try
print ($info[1][2]);
I get nothing.