phphttp-redirectheader

How to refresh the current page (aka. redirect to the same URL)?


I have a page which has to refresh itself after a POST request. Is there a way to get the exact url to the current page?

Like header('location: ???');?


Solution

  • header('Location: '.$_SERVER['REQUEST_URI']);