I want to trigger the browser's back functionality through a hyperlink in my page template, using JavaScript (or PHP if possible). Does anyone know how to implement this?
EDIT
Found the solution using JavaScript. Here is the link if anyone needs it.
And here's the code:
<a href="#" onclick="history.back();return false;">Go back</a>