php redirect to another php page code example
Example 1: php redirect
//PHP redirect
header("Location: https://www.codegrepper.com/my-redirect-page.php");
die();
Example 2: php go to another page
<?php header("Location: anotherDirectory/anotherFile.php"); ?>