Quote:
Yesterday at 01:47 PM Logician said this in Post #20
ok before Xenon gets angry let's listen to him: :glasses: So edit index.php, find:
PHP Code:
global $bbforumview;
After that add:
PHP Code:
global $testing;
|
As per your instructions (and Xenon's) I was able to display some text using the variable. Thank you both.
With the usefulness of the simple example now past, I attempted to add in some php code in the phpinclude template but it seems I pushed my luck a bit too far. It was a basic count script to display TESTING 123 three times:
$testing =
($i = 0; $i < 3) {
echo "TESTING 123"
}
I know this breaks the no echo rule for phpinclude but what would be a way to incorporate external php in this manner?
Thanks again.