Mercurial > hg > waet-hammond-1
diff new/php/save.php @ 15:853caf8cd74b
Update
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 04 May 2016 17:25:19 +0100 |
parents | |
children | 01608b20a12d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/new/php/save.php Wed May 04 17:25:19 2016 +0100 @@ -0,0 +1,34 @@ +<?php + error_reporting(0); + header('Access-Control-Allow-Origin: *'); + header("Content-type: text/xml"); + $postText = file_get_contents('php://input'); + $file_key = $_GET['key']; + $filename = "../saves/save-".$file_key.".xml"; + $doc = new DOMDocument; + $doc->preserveWhiteSpace = false; + $doc->formatOutput = true; + $doc->loadXML($postText); + $postText = $doc->saveXML(); + $fileHandle = fopen($filename, 'w'); + if ($fileHandle == FALSE) + { + // Filehandle failed + $xml = '<response state="error"><message>Could not open file</message></response>'; + echo $xml; + return; + } + $wbytes = fwrite($fileHandle, $postText); + if ($wbytes === FALSE) + { + // FileWrite failed + $xml = '<response state="error"><message>Could not write file "'.$filename.'"</message></response>'; + echo $xml; + return; + } + fclose($fileHandle); + + // Return XML confirmation data + $xml = '<response state="OK"><message>OK</message><file bytes="'.$wbytes.'">"'.$filename.'"</file></response>'; + echo $xml; +?> \ No newline at end of file