b@1478: Input file empty';
giuliomoro@2122: echo $xml;
giuliomoro@2122: return;
giuliomoro@2122: }
nickjillings@1971: if ($fileHandle == FALSE)
nickjillings@1971: {
nickjillings@1971: // Filehandle failed
nickjillings@1971: $xml = 'Could not open file';
nickjillings@1971: echo $xml;
nickjillings@1971: return;
nickjillings@1971: }
nickjillings@1971: $wbytes = fwrite($fileHandle, $postText);
nickjillings@1971: 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: ?>