<?php
include "../include.php";

$dom = new DOMDocument();

$dom->preserveWhiteSpace = false;

$dom->load("users.xml");

$dom->formatOutput       = true;

$str = $dom->saveXML();

print $str;
?>