Is it possible to do something like:
<?php $variable = " ?> Stuff in Variable <?php "; ?>
That wo't work, but you can use the heredoc syntax.
$str = <<<EOD Example of string spanning multiple lines using heredoc syntax. EOD;
HalfaBee
Brilliant! That's what I'm looking for!