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