in reply to Using Perl To Redirect To Other Pages
my $url="http://www.foo.com"; my $t=1; # time until redirect activates print "<META HTTP-EQUIV=refresh CONTENT=\"$t;URL=$url\">\n";
or
use CGI; my $query=new CGI; print $query->redirect('http://www.foo.com');
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Using Perl To Redirect To Other Pages
by LTjake (Prior) on Dec 03, 2002 at 19:52 UTC | |
by Cody Pendant (Prior) on Dec 04, 2002 at 01:56 UTC | |
by Anonymous Monk on Nov 19, 2008 at 21:13 UTC | |
by Your Mother (Archbishop) on Nov 19, 2008 at 21:35 UTC | |
by Anonymous Monk on Nov 20, 2008 at 08:21 UTC | |
by unrelatedmonk1 (Novice) on Apr 05, 2016 at 16:28 UTC |