Here is my problem : when I create a webpage, I use an editor and it returns me well formed html code, and I would like a variable to have this html code as value.
Basically, what I am trying to do is something like :
$html = "<body>
<p>blablala</p>
</body>";
echo $html;
Is there a way to make multiple lines "let" clauses in PHP ?
I could do it with a small script taking an html file and then making a one line of it while escaping special characters, but frankly I find it ugly as hell.
What should I do ?
Tkx
zab