11-21-2008, 09:12 PM
|
#10 (permalink)
|
|
The Visitor
Join Date: Nov 2008
Posts: 4
Thanks: 0
|
Ok I figured it out (should have googled first haha!)
PHP Code:
foreach ($xml->guildInfo->guild->members->character as $char) {
echo $char['name'] . "<br>";
}
Anyone know how I can go about sorting this array of arrays for the ['name']?
|
|
|
|