How to redirect a page using php?

PHP can be used to redirect a user from one page to another using the `header()` function.

Example:

  header('Location: new_page.php');
  
Solution:

  header('Location: new_page.php');
  exit;
  

Beginner's Guide to PHP