after validate credential header is not redirect to another page in php in live server

PHP
<?php
// This will just redirect you to example.com
$url = "https://example.com";
header("Location: $url");  
?><?php
// This will just redirect you to example.com
header("Location: https://example.com");  
?>
Source

Also in PHP: