How you would make the request to statistics.graal.us
PHP Code:
function onCreated() {
temp.url = "http://statistics.graal.us/server/list?xml=1";
temp.req = requesturl(temp.url);
this.catchevent(temp.req, "onReceiveData", "onServerListData");
}
function onServerListData(obj) {
// obj.fulldata - result of web request.
}
View the source on the page to see what you're dealing with. I don't know why unless you're remaking a server-list GUI for some reason.