I'm quite new in Perl. I'm using here document to print out something in our UI. I could not find a way to add HTML code in here document.
my $str = <<"EOF";
<h1>Something</h1>
EOF
Please help. Thanks
I'm quite new in Perl. I'm using here document to print out something in our UI. I could not find a way to add HTML code in here document.
my $str = <<"EOF";
<h1>Something</h1>
EOF
Please help. Thanks
Thanks, the UI framework did not interpret the embedded HTML, thus like @DaveCross and you guys said, the embedded HTML should work.