1//refreshes your current page
2header("Refresh:0");
3
4//refreshes your current page after 5 seconds
5header("Refresh:5");
6
7//If you need to redirect it to another page
8header("Refresh:0; url=page2.php");
1//Refreshes your current page
2header("Refresh:0");
3header("Refresh:2"); // Refreshes after 2 seconds
4
5//If you need to redirect it to another page
6header("Refresh:0; url=page2.php");