Automatic refresh PHP

0

Hey guys, I'm setting up a system here and I need the page to refresh automatically every 60 seconds, how could I do it?

    
asked by anonymous 01.08.2018 / 21:05

1 answer

0

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 reloaded.

    
01.08.2018 / 21:09