in reply to printing a table in html using data read from a file
I can't ever get "use HTML::Table" to work, just includeing it make it crash
You might want to test your system by doing something simple like:
Then you should at least see if you can include HTML::Table. Look at the generated HTML as well; warnings will appear as HTML comments.#!/usr/bin/perl -wT use strict; use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use CGI; use HTML::Table; print <<EOF Content-type: text/html\r \r <html><body><h1>Looks OK to me...</h1></body></html> EOF
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: printing a table in html using data read from a file
by Anonymous Monk on Jun 12, 2001 at 20:18 UTC | |
by bikeNomad (Priest) on Jun 13, 2001 at 01:15 UTC |