\n";
}
function xml_error($msg) {
xml_header();
echo "$msg\n";
exit();
}
function show_host_xml($host) {
echo "
$host->id
$host->host_cpid
$host->total_credit
$host->expavg_credit
$host->expavg_time
$host->domain_name
$host->p_ncpus
$host->p_vendor
$host->p_model
$host->p_fpops
$host->p_iops
$host->os_name
$host->os_version
";
}
function show_user_xml($user, $show_hosts) {
xml_header();
echo "
$user->id
$user->create_time
".htmlspecialchars($user->name)."
$user->country
$user->total_credit
$user->expavg_credit
$user->expavg_time
$user->teamid
".htmlspecialchars($user->url)."
$user->has_profile
";
$result = mysql_query("select * from host where userid=$user->id");
if ($show_hosts) {
while ($host = mysql_fetch_object($result)) {
show_host_xml($host);
}
}
echo"
";
}
?>