*/
error_reporting( E_ALL );
$xmlString = 'foobar';
require_once 'XML/Beautifier.php';
$fmt = new XML_Beautifier();
$result = $fmt->formatString($xmlString);
echo "
Original string
";
echo "";
echo htmlspecialchars($xmlString);
echo "
";
echo "
";
echo "Beautified string
";
echo "";
echo htmlspecialchars($result);
echo "
";
?>