Interesting...
If I do this:
--------------
<? $test = "testing"; ?>
<? echo $test; ?>
-----------------
I get the expected result.
If I do this:
--------------
<? $test = "testing"; ?>
<!--mfunc mysecret --> echo $test; <!--/mfunc mysecret -->
-----------------
I get nothing - nothing echos out.
If I run this though:
-----------
<!--mfunc mysecret -->
echo rand();
<!--/mfunc mysecret -->
-------------
That works, so I know that W3TC is recognizing those tags and running the code im between as php...
Any thoughts on this? I'm stuck because it won't echo what I need it too,
Chris