How Can I Redirect Page after Five(5) Seconds Using PHP?

Hi friends, today I will tell you through this blog how you can get redirected from one page to another page with the help of php.

PHP redirect after 5 seconds, How to Redirect Page in PHP after a few seconds,Redirect with Timer in PHP

The header is the inbuilt function of php that we use to redirect the page. If you want your page to be redirected after a few seconds, we use refresh in the header for this.
As mentioned in the example below.

redirect.php

<?php 
header("Refresh:5; url=index.php");
?>