in reply to How to make a link, using cgi.pm, that opens a new window

use CGI; my $cgi = new CGI; print $cgi->a({href => 'http://www.google.com', target => '_blank'}, ' +Google');

Replies are listed 'Best First'.
Re: Re: How to make a link, using cgi.pm, that opens a new window
by wizard341 (Acolyte) on Aug 20, 2003 at 20:04 UTC
    Works great. Thanks.