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