Perfect. Thanks Alex!
I’m extremely new to php, but I would like to simply sort the output alphabetically. Would you happen to already have code to do that?
In the mean time, I’m going to try to figure it out on my own as well. I assume I would load the output into an array, then sort it, then echo out the array.
If I get it figured out, I’ll post my results back up for comment.
Edit: Ok… wow… duh. The data is already in the array $players. Found the sort command and added
sort($players);
right before I echo them out.