Mercurial > hg > webaudioevaluationtool
view save.php @ 823:a0d7a64d8325
Urgent Fix. Drag End function uses clientX mouse. Fixes rogue movement after drop on OSX.
author | Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk> |
---|---|
date | Mon, 23 Nov 2015 15:48:07 +0000 |
parents | 7b0ce3a9ddc1 |
children | cfe755cc2bc2 |
line wrap: on
line source
<?php header('Access-Control-Allow-Origin: *'); header("Content-type: text/xml"); $postText = file_get_contents('php://input'); $datetime = date('ymdHis'); $xmlfile = "save".$datetime.".xml"; $fileHandle = fopen("saves/".$xmlfile, '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 "saves/'.$xmlfile.'"</message></response>'; echo $xml; return; } fclose($fileHandle); // Return JSON confirmation data $xml = '<response state="OK"><message>OK</message><file bytes="'.$wbytes.'">"saves/'.$xmlfile.'"</file></response>'; echo $xml; ?>