0
Eai guys I’m setting up a system here and I need the page to give automatic refresh every 60 seconds, how could do?
0
Eai guys I’m setting up a system here and I need the page to give automatic refresh every 60 seconds, how could do?
1
Put this script on the page:
<script type="text/javascript">
Redirect();
function Redirect()
{
setTimeout("location.reload(true);",60000);
}
</script>
In 60 seconds, it will be recharged.
Thank you, gave certinho hehehe Sorry for the stupid question, I’m still beginner :))
Come on William, we’re all learning!
Browser other questions tagged php html
You are not signed in. Login or sign up in order to post.
<meta http-equiv="refresh" content="60">
– Pedro Augusto
Thank you very much brother, also worked perfectly
– Guilherme Freitas