Lincoln has a CGI.pm manual online. But if you can, grab a copy of Official Guide to Programming wth CGI.pm. It's invaluable as a desktop reference.

As mephit noted, you're already importing all of the standard CGI.pm functions by using use CGI qw(:standard). Since you may as well use what's already imported, below is a sample of what your program can look like with using CGI.pm.

#!/usr/bin/perl -w use strict; use CGI qw/ :standard *table /; use CGI::Pretty; # not necessary, but it makes for more legible html o +utput my $db ="test.txt"; # moved header and start_html outside of loop # print takes a list, so you can join several items to print with comm +as print header, start_html( -title => 'Script' ), hr, start_table( { -width => '100%', -border => '0' } ); # It's more helpful to include $! in the error open( FILE, "<$db" ) or die "Well, whats up.. can't open file $!\n"; while ( <FILE> ) { # no need to define $line here -- $_ is already defined, so you ca +n use it # directly chomp; # Just a preference note. When working with arrays, I prefer to u +se # something a little easier to maintain, like: # my ( $name, $date, $something, $somethingelse ) = split/::/; # it's a bit easier than trying to remember the order of the field +s in $db my @events = split/::/; print Tr( td( { -width => '22%' }, font( { -size => '+1', color => 'gray' }, b( "$events[0] $events[1], $events[2]" ) ) ), td( { -width => '78%' }, font( { -size => '+1', color => 'black' }, $events[3] ) ) ), Tr( td( { -colspan => '2'}, font( { -size => '2' }, $events[4] ) ) ); } print end_table, end_html; close FILE or die "Can't close $!\n";

In reply to Re: Printing with CGI.pm by Jazz
in thread Printing with CGI.pm by cal

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.