Do you know a technique, to have a php file wich include #exec tags, so they can be parsed also by the server ?
I know i can include with virtual() a php file in a .shtml file, but it's not the solution for me thanks for your help.
will !
You can also include a shtml file into php using the PHP function virtual() (not just the other way around).
<? // execs the shtml file virtual("myfile.shtml"); ?>
Jack