in reply to CGI perldoc with pod2htm

It looks that `pod2html $abs_filename`; is called in void context, you need to print it. Beside this take a look at Pod::Webserver or Apache::Pod.
Boris

Replies are listed 'Best First'.
Re^2: CGI perldoc with pod2htm
by hmerrill (Friar) on Jun 14, 2004 at 19:07 UTC
    I've even tried doing this:
    print "Content-type: text/html\n\n"; my $html_output = `pod2html $abs_filename`; print $html_output;
    but that doesn't work either - same thing - blank screen. Other ideas?
      Perhaps pod2html is not in your path? Try to use it with the full path in front of pod2html.
      Boris