php get current header location code example
Example 1: header location in php
<?php
/*
This will redirect to facebook.com
*/
$url = "https://facebook.com.com";
header("Location: $url");
exit;
?>
Example 2: php location same page
header("Location: " . "http://" . $_SERVER['HTTP_HOST'] . $location);