02-10-2009, 01:50 AM
|
#32 (permalink)
|
|
The Visitor
Join Date: Feb 2009
Posts: 4
Thanks: 0
|
PHP Code:
$armory = new armory('roster', 'steamwheedle cartel', 'fallen legacy', NULL, NULL);
$xml = $armory->pull_xml();
foreach ($xml->guildInfo->guild->members->character as $char) {
echo $char['name'] . "<br>";
}
The returns this error now:
Warning: Invalid argument supplied for foreach() in .../fallenlegacy/test3.php on line 96
so I thought it might be the cURL stuff soo I tried the other way and in addition to the above warning I also got this:
Warning: file_get_contents( http://www.wowarmory.com/guild-info....llen+legacy&p=) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 503 Service Temporarily Unavailable in .../fallenlegacy/test3.php on line 81
Does that mean my webserver has a temp ban on it? Or where my webserver is located can't get to the armory?
|
|
|
|