+ 1
How to redrict to any other page in php
3 Answers
+ 1
thanks a alot
+ 4
set location header
header("location: index.php");
+ 2
function redirect($url, $statusCode = 303)
{
header('Location: ' . $url, true, $statusCode);
die();
}
redirect("sample.html");