in reply to CGI script gives "internal server error"
This is documented in perlop: "There must be no space between the '<<' and the identifier, unless the identifier is quoted. (If you put a space it will be treated as a null identifier, which is valid, and matches the first empty line.)"print <<NO_SPACE_BETWEEN_THE_ANGLE_BRACKETS_AND_THIS_TEXT; ... NO_SPACE_BETWEEN_THE_ANGLE_BRACKETS_AND_THIS_TEXT # or print << "SPACE_ALLOWED_WHEN_THIS_TEXT_IS_QUOTED"; ... SPACE_ALLOWED_WHEN_THIS_TEXT_IS_QUOTED
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CGI script gives "internal server error"
by manish.rathi (Acolyte) on Mar 03, 2009 at 20:16 UTC | |
by thunders (Priest) on Mar 03, 2009 at 20:30 UTC |