how to add php to html header code example
Example 1: php redirect
header("Location: http://example.com");
die();
Example 2: php header
header ( string $header [, bool $replace = TRUE [, int $http_response_code ]] ) : void
header("Location: http://example.com");
die();
header ( string $header [, bool $replace = TRUE [, int $http_response_code ]] ) : void