in reply to [Solved]: Can we use print <<HTML; twice in same file?
It's very simple to test this.
$data = <<HTML; Here is my data! HTML $other = <<HTML; Here is some OTHER data! HTML print "$data\n$other\n";
Output:
Here is my data! Here is some OTHER data!
|
|---|