|
Last updated: 06/30/2009
From a CGI, you often want to send a user to a "thank you" or confirmation page. Here are two methods to do this
To refresh a page (in 2 seconds):
<meta http-equiv="refresh" content="2;url=http://www.robertswebforge.com/">
To jump directly from a Perl script:
print "Location: http://www.robertswebforge.com";
Note: The "Location" line must be the only output of the script - no header line comes prior to this.
blog comments powered by
|