Re: Redirect to another script
Bill Mills-Curran (bcurran@clariion.com)
Fri, 12 Nov 1999 07:18:19 -0500 (EST)
On Thu, 11 Nov 1999, Preston VanderWeyst wrote:
> Date: Thu, 11 Nov 1999 16:25:39 -0800
> From: Preston VanderWeyst <Preston@screamingmouse.com>
> To: libwww@perl.org
> Subject: Redirect to another script
>
> >From a CGI script I am trying to redirect to another script on a different
> web-site. I can do it, but I can't seem to get parameters passed. Anyone
> have any suggestions?
>
>
>
From the CGI man page:
use CGI;
$q = CGI->new;
print $q->header;
print $query->redirect('http://somewhere.else/in/movie/land');
print $q->end_html;
Bill