How to auto refresh page for every 3 minutes by passing command in URL?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tvnaidu
    Contributor
    • Oct 2009
    • 365

    How to auto refresh page for every 3 minutes by passing command in URL?

    How to auto refresh page for every 3 minutes by passing command part of URL?. I need to refresh one page automatically by passing that refresh command part of url, for example if I want to refresh my-own-web-page.com: some URL like this to auto reload?

    http://www.my-own-web-page.com?auto-refresh=3
  • Death Slaught
    Top Contributor
    • Aug 2007
    • 1137

    #2
    The ?auto-refresh=3 often seen at the end of URLs, is caused by PHP parameters submitted through a form. I don't know if it's possible, but you should ask in the PHP forum.

    Regards, Death

    Comment

    • tvnaidu
      Contributor
      • Oct 2009
      • 365

      #3
      Thanks, I found refresh-every plugin for firefox.

      Comment

      • Bharat383
        New Member
        • Aug 2011
        • 93

        #4
        make javascript timer function and done it...

        like this :::
        <script type="text/javascript">

        function make_refresh()
        {
        window.location .reload();
        setTimeout("mak e_refres()",600 00*3);

        }
        </script>
        <body onload = "make_refresh() ">

        your code here
        </body>

        Bharat Parmar(Bharat38 3)

        Comment

        Working...