Help.
I am sure I have got this to work ok before. I am using a variation of fusebox methodology that I developed for PHP.
Basically the index page drives all and a some switch/case code picks up a fuseaction variable to decide which template to include.
Here is the crux. At a simple level, I can write a link to say index.php?fuseaction=testpage&variable=foo.
In my index, the switch case will pick up a a value of test page and be told to include "testpage.php". No problem.
However, in any of my included templates the value of my variable seems to disappear.
so if my testpage.php contained the code
<?php print "$foo"; ?> nothing would happen. No errors or anything. But no variable value printed.
Is this a passing variables to includes problem???
Once again help?
Tim