php page redirect to another page code example
Example 1: php redirect
//PHP redirect
header("Location: https://www.codegrepper.com/my-redirect-page.php");
die();
Example 2: php redirect to url
header("Location: http://example.com/myOtherPage.php");
die();
Example 3: php redirect to page
header("Location: /");
exit();
Example 4: how to redirect to php
function location($where){
echo '<script>window.location.href="'.$where.'"</script>';
}
location("https://youtube.com");