in reply to what is this error means Use of uninitialized value $. in concatenation (.) or string
The HTML code following after the line print <<EOF; is not properly quoted. You should write that line as:
to prevent perl from interpolating $. and $( as variables.print <<'EOF';
|
|---|