ok tommyboyo,
basically, what i'd to is by hand draw out a rough idea for the relationship structure and set it out a little like explorer. e.g.:
Home
|
Routes
|
--------------------------
| | |
Walks Sights Location
or something to that effect. try to aim for 1 or 2 HTML documents per area.
for your rating system, try typing some text for instance:
How did you find this walk?:
or
Please Rate This walk.
then add this code (altered of course for your e-mail...and different options) and you'll have a drop-down box.
Code:
<form method="POST" ENCTYPE="text/plain" action="mailto:youremail@yourdomain.com">
<p><select name="rating" size="1">
<option value="5">5 - Excellent, Extremely Useful</option>
<option value="4">4 - Very Good, Useful</option>
<option value="3">3 - Good, I learned something</option>
<option value="2">2 - Ok, but not really that useful</option>
<option value="1">1 - Not Useful At All, Sorry</option>
</select><input type="submit" value="Submit"></p>
</form>
the next thing to do is to use Dreamweavers textarea for the comments and suggestions. these can be found in:
Insert --> Form Objects --> Textarea
when you insert it, if it asks you if you want to add the form tag, click "Yes" and it adds the code for it, now all you really need to edit for this code-wise, is the action for submitting. just add after the action= bit, mailto:yourname@yourdomain.com (note:: obviously you'll edit the e-mail to whatever yours is.
hope this helps you tommyboyo