Answers for "set server header manually in php"

PHP
3

php redirect

header("Location: http://example.com");
die();
Posted by: Guest on October-03-2020
2

header location in php

/*
This will just redirect you to example.com
*/

<?php
$url = "https://example.com";
header("Location: $url");  
exit;
?>

/* I hope it will help you. Namaste */
Posted by: Guest on May-07-2020

Browse Popular Code Answers by Language