What function in PHP can be used to redirect to another page?

In PHP, the function `header()` can be used to redirect to another page. This function sends a raw HTTP header to the client, which can be used to redirect the browser to a different location. To redirect to a different page, you need to set the `Location` header with the URL of the page you want to redirect to.

<?php
// Redirect to another page
header("Location: https://www.example.com/newpage.php");
exit;
?>