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