Refresh automatico PHP

Asked

Viewed 1,128 times

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?

  • 2

    <meta http-equiv="refresh" content="60">

  • Thank you very much brother, also worked perfectly

1 answer

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

You are not signed in. Login or sign up in order to post.