in reply to Re: Re: Why does $sql = EOSQL; require EOSQL to be in column 0?
in thread Why does $sql = <<EOSQL; require EOSQL to be in column 0?

FYI, if you leave off the quotes around your here-doc terminator, then you get the double-quotish, not single-quotish, behavior. To get a single-quotish here-doc, you have to explicitly use single quotes.
$name = 'Bob'; my $text = <<EOT; Hello, $name! EOT print $text;
  • Comment on Re: Re: Re: Why does $sql = EOSQL; require EOSQL to be in column 0?
  • Download Code