n@816: Could not open file';
n@820: echo $xml;
n@820: return;
n@820: }
n@820: $wbytes = fwrite($fileHandle, $postText);
n@820: if ($wbytes == FALSE)
n@820: {
n@820: // FileWrite failed
n@820: $xml = 'Could not write file "saves/'.$xmlfile.'"';
n@820: echo $xml;
n@820: return;
n@820: }
n@816: fclose($fileHandle);
n@820:
n@820: // Return JSON confirmation data
n@820: $xml = 'OK"saves/'.$xmlfile.'"';
n@820: echo $xml;
n@816: ?>