How to insert a CMS (Doop) page into a separate page using PHP?
I have installed DOOP, a very simple CMS. I put it into its own folder in my website root. What I want is for a particular DOOP page, let's say the home page
http://mywebsite.com/cms/index.php?page=1home
to display on another page - let's say this one
http://mywebsite.com/aboutus.html
I thought about using an inline frame, which would work except that the frame height won't scale when the frame content is taller than the frame height. I don't want any srollbars, I want this to be seamless.
Then I thought about using a PHP include. However when I try that I get strange header and T_STRING errors.
Is there a better way? Am I using includes the wrong way? Thanks for help, and if you message me I'll send actual examples of what I'm doing.



