<?
	$xmldoc = new DomDocument('1.0', 'UTF-8');

	// create root node
	$root = $xmldoc->createElement('success', $this->success);
	$root = $xmldoc->appendChild($root);

	$data = $xmldoc->saveXML();

	echo $data;
?>