Fw: Perl Question

2001-01-19 Thread Kevin Schmidt
- Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 18, 2001 11:09 AM Subject: OT: Perl Question Got a perl cgi and after I am finished processing I want to redirect the user to another URL similar to the Cflocation tag. Anybody

Re: Fw: Perl Question

2001-01-19 Thread Dick Applebaum
Try: print "Location: http://www.somewhere.com\n\n"; At 8:49 AM -0600 1/19/01, Kevin Schmidt wrote: - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 18, 2001 11:09 AM Subject: OT: Perl Question Got a perl cgi and after

Re: Fw: Perl Question

2001-01-19 Thread Jay Brushett
Hi, To use the following you have to add this line: use CGI; to the top of the file. print redirect(-location="$newURL"); Hope this helps/ Jay At 08:49 AM 1/19/2001 -0600, you wrote: - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

Re: Fw: Perl Question

2001-01-19 Thread Ryan
print "Location: http://someurl?fuseaction=someaction\n\n"; you might have to print a content header if you're not already. print "Content-Type text/html\n"; Ryan At 08:49 1/19/01 -0600, you wrote: - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: [EMAIL PROTECTED]