b@1478: Could not open file';
nickjillings@1510: echo $xml;
nickjillings@1510: return;
nickjillings@1510: }
nickjillings@1510: $wbytes = fwrite($fileHandle, $postText);
giuliomoro@1856: if ($wbytes === FALSE)
nickjillings@1510: {
nickjillings@1510: // FileWrite failed
nickjillings@1292: $xml = 'Could not write file "'.$filename.'"';
nickjillings@1510: echo $xml;
nickjillings@1510: return;
nickjillings@1510: }
b@1478: fclose($fileHandle);
nickjillings@1510:
nickjillings@1292: // Return XML confirmation data
nickjillings@1292: $xml = 'OK"'.$filename.'"';
nickjillings@1510: echo $xml;
nickjillings@1292: ?>