Stephen Liu wrote:
Hi folks,
hello,
Please advise how to add 'bold', 'italic', 'colour', etc. such features to the printout. Can HTML syntax work on perl? I tried seeming not applicable.
If you're outputinng to something that understands html, yes:
#!/usr/bin/perl
use CGI 'header';
print header();
print q(<b>Bold</b><i>Italic</i><a href="http://search.cpan.org">Look at cpan for modules</a><br />);
If not, look at the urlin the link above for modules that colorize terminal output...
HTH :)
Lee.M - JupiterHost.Net
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>