Jamie Risk wrote:
> er, sorry.
>
> Is there a module to produce html formatted output? If so, would I
> be directed to some documentation?
>
> > > I have to assume that any of the simple HTML-izing I want to do
> > > with simple text files has already been done.  I'm guessing
> > > modules, particularly "CGI" but would appreciate a directed
> > > pointer to docs.

Thanks Jamie, but I still can't help very much. It sounds like you
need to explore

  perldoc CGI

a little more. What can help a lot if you're writing CGI stuff is
HTML::QuickTable which lets you do things like

  use HTML::QuickTable;
  my $qt = HTML::QuickTable->new(font_face => 'sans-serif');
  print $qt->render(\%ENV);

is there anything more specific we could help you with?

Rob




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to