PHP
PHP Refresh Page Examples
You may know how to refresh page using JavaScript. But, do you know how to refresh page using PHP? In this article, I am going to share very easy way to make page refresh using PHP. So read on for more info.
How To Refresh Page Using PHP
Let’s see how to do this by means of an example. The following piece of code will refresh the page after 5 seconds. You may change it as per your needs.
Example:
echo 'This page will be refreshed after 5 seconds.'; echo '<meta http-equiv="refresh" content="5">';
To use the above code, simply copy the second line and change the seconds value from 5 to any value you desire.
Your Turn!
Do you know of any other ways to refresh a page using PHP? Feel free to suggest by commenting below.