Forum Moderators: mack
I want to reload a webpage on my site automatic every 60 seconds and continuously. I want a refreshing of the page every 60 seconds.
Does anybody know how to reach this?
>> to explain my question: on the page I've got a counter that displays the number of people that are visiting the page; but the counter doesn't adapt to the number of real visitors since the page was shown for the first time. It shows the number of visitors at the moment you open the page, but that number stays stable, regardless of the people visisting and leaving the pages since. It only gives an actual number of visitors for a given moment when I reload ('Refresh') the page. <<
Thanks in advance!
Greetings, Franky
Depending on how your site is coded there are a number of options. Probably the simplest, though, is to put the counter in a seperate file, include that file in the web page with SSI or an iframe and then just refresh the counter page.
Main Page:
<iframe width=10% hspace=0 vspace=0 frameborder=0 marginheight=0 marginwidth=0' src=counter.html></iframe>
counter.html:
<META HTTP-EQUIV=Refresh CONTENT="60; URL=counter.html">
Counter code