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