Ok, I can't get /anything/ to print while trying to use:
#!/usr/bin/perl -w
use strict;
use CGI qw/:standard/;
use HTML::Tree;
use LWP::Simple;
print header, start_html('test printing');
my $cnt;
until ($cnt eq "2") {
$cnt++;
print "Current page count: $cnt<br>";
my...