Hi,
I've looked around, but I can't find out how to put the content of a variable outside the PHP tags. For example I have tried:
<?php
$theVariable="?>
<p align="left">Here is the content of the variable, I can put quotation marks in without having to escape them</p>
<?php ";
echo "$theVariable";
?>
This returns the ?> as well as all the content.
Any help would be greatly appreciated.
Thanks.