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