Hi folks, I'm a bit new to Perl and still am working my way through it, so bear with me.
I want to generate webpages. (Of course!) All that changes is the middle of the page. I slurp in the top half of the page like so:
undef $/;
$file = "mptop.txt";
open INPUT, "$file";
$mptop = <INPUT>...