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