What are some methods for creating an automatic redirection on a webpage using PHP?

When you need to automatically redirect users from one webpage to another in PHP, you can use the header() function with the Location parameter to specify the URL to redirect to. This is commonly used for scenarios like redirecting users after form submission or when a certain condition is met.

<?php
// Redirect to another webpage after 3 seconds
header("refresh:3;url=destination_page.php");
exit;
?>