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