Ruprecht Helms wrote:
Hi,

how have I to write the printstatement to write a URL like
http://www.example.com within the htmltag (<a
href="http://www.example.com";>Linktext</a>) into a textfile.

Regards,
Ruprecht Helms


#!/usr/bin/perl

use strict;
use warnings;

use CGI;
print CGI->a( {-href=>'http://www.example.com/'}, 'Linktext' ), "\n";


--
Just my 0.00000002 million dollars worth,
  Shawn

Programming is as much about organization and communication
as it is about coding.

I like Perl; it's the only language where you can bless your
thingy.

--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/


Reply via email to