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