How would I use the include() function within an array?
For example, I have an array which lists a bunch of counties, instead of inputting all of the counties into an array, I created a .txt file of comma delimited counties. Logically, I think it's supposed to work as such:
array (include ("counties.txt"));
But it produces the list outside of the array's function.
is there a different method of using the include() function within an array?