I would like to use a variable as an array value so that I can display the proper values.
For example, instead of fname[1], I would like to replace the "1" value with a variable because I am using a counter.
This doesn't work:
$count=$count+1;
echo $fname[$counter];
(repeat loop as needed)
Any ideas? Thanks for your help!