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