Answers for "php list redirected headers"

PHP
3

php redirect

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

How do I make a redirect in PHP?

header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...
Posted by: Guest on May-18-2020

Browse Popular Code Answers by Language