<?php

include('../inc/config.php');
include('../inc/database.php');
include('../inc/system.php');
include('../inc/realm.php');

$System = new System($Config);
$Realm = new Realm($System, $Config['Web']['DefaultRealmIndex']);

$Output = $Realm->WoWEmuStat();
Header('Content-Type: text/xml');
Header('Content-Length: '.strlen($Output));
echo($Output);

?>
