I'm trying to create a variable with multiple lines but for some reason the <<<_END operator isn't working this is how the code looks:
<?php
$author = "Anon";
echo
<<<_END
First Lines
Second Line.
Third Line.
- Written by $author.
_END;
?>
Why might it be?
I'm using php 5.2.14
on bitnami
not on my main computer but I will be using this pc for a good while so i need to fix that problem :p
Thanks!