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