header() exit; php code example
Example 1: php redirect
header("Location: http://example.com/myOtherPage.php");
die();
Example 2: header location in php
<?php
// This will redirect to google.com
$url = "https://google.com";
header("Location: $url");
?>