Web browser Go Back in a Button
<input type="button" value="Back" onclick="history.back();">
You will need the <form> tag first if you do not have a form.
or you can do a
<a href='#' onClick='history.back();return true;'>back</a>
with out needing form tags.