Hello,
Can I insert HTML code in a PHP file the same way I could do it in Perl with:
print <<"EOF"; < My html code > EOF
If yes what do I need to use in lieu of “ print << EOF”;.
If I cannot do it that way, can I import an HTML page in a PHP template the same way that you would import a formatted text file in a HTML page?
As for why I want to do it, I have a Perl script which is generating static HTML page, I want to insert the generate page in my php template.
Thank you