Create browser back button when JavaScript disabled?

browser, dom, html, javascript

Solution

The easiest way to do this is on the server side. If you can get the HTTP Referrer (this is available in many server side languages), then you can build a link and append it to the page's regular HTML.

Problem

Is it impossible to create a browser back button, using a form or link, when a users javascript is disabled?

Original source