I have an array like this:
$team_scores = array('Tigers' => 3, 'Spikes' => 6, 'Crashers' => 8, 'Fortress' => 2);
created from a MySQL query in which names are from one column and values are from another column. I want to create a page for each team that should indicate the name of the team and its score as well as position. So in this example I would have 4 pages and each page shows the name and score for a team without showing any information about other teams other than the total teams that participated. So it would show
Name: Spikes Score: 6 Position: 2/4,
For Crashers it would be
Name: Fortress Score: 2 Position: 4/4,
I am thinking a foreach loop would do but am only able to echo the teams and scores on a single page, when what I need is to create 4 pages, one for each item in the array. I am able to do that with data just being pulled from the database, but from such data I do not think its possible to determine the position of each team without having the data in one array.
Is that even possible or am I asking PHP to do what cannot be done? Any help will be deeply appreciated.