Make a "Go Back" Button
To make a "Go Back" button just use this code.
<FORM>
<INPUT TYPE="Button" NAME="Submit" VALUE="Go Back" onClick="history.go(-1)">
</FORM>
You will get a button like this one:
(Clicking it will take you back to the last page you visited)
Previous Code
Next Code