in reply to Using CGI.pm to auto refresh a web page

I've always found javascript solves some of these problems quite simply. Try the below.

Dean
<script language="javascript"> //the page will be refreshed every 10 seconds.. //the function refresh is called every 10 secs set Timeout('refresh()',10000) function refresh() { //this line does the actual reloading of the page window.location.reload(); } </script>

Replies are listed 'Best First'.
Re: Re: Using CGI.pm to auto refresh a web page
by Anonymous Monk on Jan 31, 2004 at 00:11 UTC
    That doesn't answer the OPs question, nor is it a solution (you should've kept it to yourself).