I am sending data from A.cgi to B.cgi. B.cgi updates the data in the database and is supposed to redirect back to A.cgi, at w
A.cgi
B.cgi
Use CGI's redirect method:
my $url = "http://Travel/cgi-bin/A.cgi"; my $q = CGI->new; print $q->redirect($url);