Search code examples
phprefresh

Refresh a page using PHP


How can I refresh a page using PHP periodically? If I can not do it by PHP, what is the best recommended scenario?


Solution

  • You can do it with PHP:

    header("Refresh:0");
    

    It refreshes your current page, and if you need to redirect it to another page, use following:

    header("Refresh:0; url=page2.php");