Hello--
I have text files with page content. I have some php code in the files. I use file_get_contents to put the content into a string then I explode it into many pieces which I print in separate locations. One of the strings has html as well as php code.
I use the <?php ?> headers in this text file, however when printing the code does not execute. <?php ?> is also no printed. Sure I could make another file with the php code needed and include that, however then I would a lot of files.
Any tips on what to do? (I would like to continue using text files rather then mysql)