in reply to Automatic redirect with a pause

Instead of using  print $query->redirect('http://www.jamradar.com/speedtrap/index3.html'); You could use this
print qq{<meta HTTP-EQUIV=REFRESH content="2; url http://www.jamrad +ar.com/speedtrap/index3.html">};
That should do it (the number 2 is the key here). Although you could do research on the meta tag and see how they actually implement the timing. Then you could cutomize it to your liking

Replies are listed 'Best First'.
Re^2: Automatic redirect with a pause
by TedPride (Priest) on Sep 29, 2004 at 23:31 UTC
    Isn't the correct syntax:
    <meta http-equiv="refresh" content="5;url=http://www.jamradar.com/spee +dtrap/index3.html">
    ? You left out an = between url and site location.