#!/usr/bin/perl # UNTESTED use CGI; use strict; use warnings; # do some processing here # create my output strings # IN real life these would be do something real... my $myTable = "some HTML string"; my $myOtherTable= "some HTML string"; # # Print the HTML # print CGI::header; print <
$myTable $myOtherTable ... lots of HTML deleted from here for brevity ...
MESSAGE1