Joe
Joe

Reputation: 1

Help with PHP web page

I have a webpage that has a roster for World of Warcraft on it. I would like to know how do I create summary statistics for number of each Class, number of each Race, and number of each Gender. Can someone please help. The data is read in from an XML page into an array. Thank you.

Upvotes: 0

Views: 55

Answers (2)

willoller
willoller

Reputation: 7330

You can start by using the xml functionality built into php:

http://www.php.net/manual/en/book.xml.php

Then use foreach loops to summarize the data.

Upvotes: 0

Ivan Nevostruev
Ivan Nevostruev

Reputation: 28753

I think you can create count array for each of your criteria and loop all your input data. Here is how it can look:

$races_count = array();
foreach ($persons as $person) {
    $races_count[ $person['race'] ] ++;
}

print_r($races_count);

Upvotes: 1

Related Questions