Thanks in advance for any help you might have to offer.
I am not well educated in code. I am teaching myself as I go. Online searches have helped me tweak the “Charilife” Bootstrap template from colorlab up to this point. But now I am stuck.
The html for any given page is broken up into
<section class=" ">
<div class=" ">
<!-- various component descriptors here -->
</div>
</section>
In one of these sections, I want to insert a PHP calendar module. I have the module working perfectly as a freestanding PHP page. I would like the whole thing to go inside this section. I have tried every possible way I can come up with to make this work. But the render never shows the calendar.
I spent most of my time trying to get this to work in an iframe. I have the CSS to make the iframe dynamic so it will size to the screen viewing the page. But nothing I have found will make the PHP show.
The Charilife files are located in the main website folder on my server. The php calendar script is located in another folder within the website folder. The address of the page I want to call would be ‘./calendar/month.php’. I can call this up in a fresh browser window and it displays perfectly.
I am guessing that I just don’t know what I am doing in defining the section, the divs, and the iframe.
Again, any help in showing me how to code this “include” successfully would really be appreciated.