Answers for "php redirect header location"

PHP
5

header location php

<?php
// This will just redirect you to example.com
$url = "https://example.com";
header("Location: $url");  
?>
Posted by: Guest on March-13-2020
1

php redirect to url

header("Location: http://example.com/myOtherPage.php");
die();
Posted by: Guest on July-27-2020

Browse Popular Code Answers by Language