redirect section php function code example
Example 1: php redirect
//PHP redirect
header("Location: https://www.codegrepper.com/my-redirect-page.php");
die();
Example 2: php redirect
header("Location: http://example.com/myOtherPage.php");
die();