Php Refresh

[Solved] Php Refresh | Php - Code Explorer | yomemimo.com
Question : php refresh

Answered by : gifted-grouse-jx1xe5jxtl7p

//refreshes your current page
header("Refresh:0");
//refreshes your current page after 5 seconds
header("Refresh:5");
//If you need to redirect it to another page
header("Refresh:0; url=page2.php");

Source : | Last Update : Thu, 15 Oct 20

Question : php header refresh

Answered by : aashit-vyom

//Refreshes your current page
header("Refresh:0");
header("Refresh:2"); // Refreshes after 2 seconds
//If you need to redirect it to another page
header("Refresh:0; url=page2.php");

Source : https://stackoverflow.com/questions/12383371/refresh-a-page-using-php | Last Update : Wed, 20 May 20

Question : php refresh page

Answered by : adcamtre

header("Refresh:0");

Source : https://stackoverflow.com/questions/12383371/refresh-a-page-using-php | Last Update : Mon, 23 Mar 20

Answers related to php refresh

Code Explorer Popular Question For Php