> > Does anybody know how to redirect from a perl page with a > print "Content-type: text/html\r\n\r\n"; code line? >
are you trying to redirect a client to another web site or page? you can try a google search for "redirect web page" and get tons of info you can use a cgi script like below: use CGI; my $q = new CGI; ..... print $q->redirect( "http://someOtherPage" ); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]