How to go back with adding anchor links. There is a code that returns the user back:

<?php header("Location: ".$_SERVER['HTTP_REFERER']); exit; ?> 

How to add to the previous page anchor link #link to get the following address: http://example.com/#link

    1 answer 1

     <?php header("Location: ".$_SERVER['HTTP_REFERER'].'/#link'); exit; ?>