PHP Includes? HELP! (Zymic)?

Brendan

New member
I'm trying to download a pre-made layout from a site, and they only have the CSS and PHP codes for it, my friend told me:

'Oh, yeah. It's called PHP Includes. It's just the CSS. You have to make a header.php and footer.php and then you post this: <? include("header.php"); ?></p>
<p>CONTENT HERE</p>
<p><? include("footer.php"); ?>'


im using zymic and i need the code in HTML, but if theres no way then this is my question:


How/where do i make the php header/footer, and does ALL the layout content go inside the given area?
 
Just like HTML, input the codes and save it as header.php or footer.php, PHP include means that you can type up a common header, footer or menu file that you want all your web pages to include.
 
Back
Top