"Simon K. Chan" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> cgi script on host 1 pass $name to host 2 script on host 2 > # get $name ---------------------------> print "hi there $name!\n"; Somewhere at the top of scriptOnHost1.cgi say: use CGI; my($q) = CGI->new(); and then when you are ready, say: print $q->redirect( "http://www.host2.com/scriptOnHost2.pl?name=$name" ); and your all set. Todd W. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]