rwpFeedback
Usage Notes

Version 1.0
October 14, 1996

Installation is simple. 
  Unzip the archive. 
  Copy rwpfeedback.exe into the win-cgi directory on your server.
  For O'Reilly WebSite, this is typically C:/WebSite/cgi-win.

The software is now installed. 

------------------------------------------------------------------------

Set up your feedback form

The next thing to do is to set up your feedback form(s).
Below is an example, and comments on what is in it.

    <FORM METHOD=POST ACTION="/cgi-win/rwpfeedback.exe/feedback">
    <INPUT TYPE="HIDDEN" NAME="fields" VALUE="1">
    <INPUT TYPE="HIDDEN" NAME="goto" VALUE="\">
    <INPUT TYPE="HIDDEN" NAME="confirm" VALUE="ALL">
    <B>Your name:</B> <INPUT NAME="field1" SIZE=50><BR>
    <INPUT TYPE=SUBMIT VALUE="Send Form">
    <INPUT TYPE=RESET VALUE="Clear Fields">
    </FORM>

Okay, let's look at it a line at a time.

The first line is simply the form action: 
  "/cgi-win/rwpfeedback.exe/feedback".
Note that you must make sure the directory specified is correct.
The parameter after the "/" specified the file to write to.

The second line tells the feedback engine how many fields you are
sending:
  <INPUT TYPE="HIDDEN" NAME="fields" VALUE="1">
This hidden field - "fields" - must be specified.

The next line -
  <INPUT TYPE="HIDDEN" NAME="goto" VALUE="\">
tells the feedback engine the file to send the user to after the
form has been processed.

The last significant line
  <B>Your name:</B> <INPUT NAME="field1" SIZE=50>
is the actual data being sent. If you have more than one field to 
send, just set the fields value to the appropriate number, and add
field2, field3, etc. as necessary.