PHP back button

Looking for a previous page or back button this is how it is done.

$back = htmlspecialchars($_SERVER['HTTP_REFERER']);
<a href="<php echo $back ; ?>">Go Back</a>
2