in reply to weird print results

It just can't be :) check your data for consistency:
foreach my $line (@results) { my ($first, $second, $third) = split(/::/, $line); print "ERROR: \$third is empty!\n" unless $third; print qq(<b>$first</b> <a href="$second&a=$first&t=$third">$third +</a><br>); }

Replies are listed 'Best First'.
Re^2: weird print results
by Anonymous Monk on Jul 01, 2006 at 18:03 UTC
    The problem with trying that is it can't possibly be empty. It prints out $third as the link's text just fine (and it's the proper text).
      just try :)
        Okay, I added it in there and it prints my results twice, as expected, but no warnings or errors of any time. In fact, it's quite similar to the results I print myself.

        Hmmmm