in reply to CGI.pm form: links

i didn't really understand what you really want..it seems to me you are looking at making a link using the CGI.pm module.. then here you go
use CGI qw/:standard/; print header,start_html('Link Example'), a({href=>'http://www.host.com'},'This is a link'),end_html;
hope this will help

Replies are listed 'Best First'.
Re: Re: CGI.pm form: links
by FireBird34 (Pilgrim) on Jan 03, 2003 at 20:48 UTC
    Sorry I can't describe it any further... Don't know exactally what it is, but I see it quite a bit. I'll keep searching on Google and tear apart some code if I find any good example -- will try to get what I want from there. Also that little snippit you posted, I wanted too; thanks.