Tips and Tricks With Perl
From Free Knowledge Base- The DUCK Project: information for everyone
_______________________________________________________________________________
Put up a bunch of HTML without so many print statements...
print <<end_html; <center> <h2>Text Heading</h2> </center> end_html
- note: The final end_html must begin in text column 1, fully left justified.
_______________________________________________________________________________