Hi everyone.
This may seem like and odd thing I am trying to accomplish but trust me I am not crazy.
My problem is that this:
echo "<? include($includeDir$footer_filename); ?>";
Prints out in the document source when loaded in a browser as this:
<? include("/path/to/includesDir/footer.php"); ?>
But what I want it to do is keep the $varibales as $variables when it outputs. So I want it to show up in the source of the document like this:
echo "<? include($includeDir$footer_filename); ?>";
so 'as is'
thanks