All pastes #2011707 Raw Edit

StepMania online error handler e

public php v1 · immutable
#2011707 ·published 2010-12-06 05:07 UTC
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();?>