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:

print <<'EOF';
to prevent perl from interpolating $. and $( as variables.

  • Comment on Re: what is this error means Use of uninitialized value $. in concatenation (.) or string
  • Download Code