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