What are the different ways to redirect to another page in PHP?

To redirect to another page in PHP, you can use the header() function with the Location parameter to specify the URL of the page you want to redirect to. Another way is to use the JavaScript window.location.href method to redirect the user to a new page.

// Redirect using header() function
header("Location: https://www.example.com");

// Redirect using JavaScript
echo '<script>window.location.href = "https://www.example.com";</script>';