Ok, here’s a tricky one for you guys:
I have 3 files:
index.php (which is a template)
language.php ( which is a php file )
header.php ( which is a template )
Index.php embeds header.php
header.php includes language.php
the objective is to read/pass a php variable from language.php to index.php
can that be done ?
An alternative solution would be to make header.php a normal php file ( no template ) and include
it in the index.php ( instead of embedding ) BUT I still need to be able to use ee-tags in header.php ( to read out a weblog )
any ideas ?
( I hope this post makes sense, it’s rather hard to explain )