CGI redirect program?

Ian

New member
does anyone know of a free cgi program which will redirect the user to another page after they have waited for 5 seconds
 
CGI can't solve the whole problem because is has no timer function. CGI is executed on the server, and the browser is a client. You solve it by adding this to the HTML page you show the visitor:

<head>
<META HTTP-EQUIV="refresh" CONTENT="5;URL=page2.htm">
</head>
 
Back
Top