rendered paste body<?php$productID = $_POST['Product'];$version = $_POST['Version'];$arch = $_POST['Arch'];$report = $_POST['Report'];$reason = $_POST['Reason'];header("Content-type: text/xml");$error_report = new DOMDocument();$xpathz = new DOMXpath($error_report);/*<CrashReport> <ReportId></ReportId></CrashReport>*/$root = $error_report->createElement("CrashReport");$report_id = $error_report->createElement("ReportId","64");$root->appendChild($report_id);$error_report->appendChild($root);print $error_report->saveXML();?>