I am using fasttemplate in a standard way to separate php and html - nothing fancy at all, I include class.FastTemplate.php3, write the code and it works.
Within a class I introduced I want to generate a file using fasttemplate. Within the function that uses it I include class.FastTemplate.php3, write the code to use it and it works.
The problem is when both occurrences of fasttemplate are invoked - that is, the processing involving my class object occurs as well as drawing the page (usually it processes and uses Header("Location: ...) to redirect, or it displays the page without processing)
I'm not sure if I'm dealing with scoping issues, instantiation of class object within my own object, or exactly what issue I'm beating my head against. Any suggestion would be appreciated.