- or download this
use CGI;
my $query = new CGI;
...
sub menu {
print $query->redirect('http://www.somedomain.org/index.html');
}
- or download this
print $query->header(-cookie => $newcookie);
print $query->redirect('http://www.somedomain.org/index.html');
- or download this
print "Set-Cookie: $cookie\n";
print "Location: $path\n\n";