Skip to content

Instantly share code, notes, and snippets.

@AungWinnHtut
Created February 3, 2019 14:38
Show Gist options
  • Save AungWinnHtut/46b112867c822062302178786fe5cde2 to your computer and use it in GitHub Desktop.
Save AungWinnHtut/46b112867c822062302178786fe5cde2 to your computer and use it in GitHub Desktop.
autorefresh web page
<head> <meta http-equiv="refresh" content="30" /> </head>
Auto Refresh Webpage with PHP, HTML and JavaScript
I’m developing server checking & monitoring webpage. I would left the page open all the time on my browser. So it will be good to that page auto refresh every certain amount of time so I don’t have to keep hitting F5 manually to refresh.
There are a few option that I have, I can do it either by using PHP Code, HTML Meta tag or JavaScript.
For example I want to refresh the webpage every 10 seconds. The are the code.
PHP Code
***********************************
<?php
$url=$_SERVER['REQUEST_URI'];
header("Refresh: 10; URL=$url");
?>
*************************************
HTML Meta Tag
1
<meta http-equiv="refresh" content="10">
JavaScript
1
<body onload=”javascript:setTimeout(“location.reload(true);”,10000);”>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment