How can you redirect a client to another page using PHP?
header('Location: /another_page.php');
header('Content-Location: /another_page.php');
header('Redirect: /another_page.php');
header('Redirect: /another_page.php', 1, 302);
header('HTTP/1.1 302 /another_page.php');
Submit