|
Posted by Michael Fesser on 06/21/07 15:56
..oO(mtuller)
>I have recently started coding at a new position where I have a
>designer that has templates setup. She has different html files that
>do different things. Set the doctype, stylesheet, etc. These were
>created for server side includes, and works great for html pages, butI
>want to include these html files into all of my php pages, and am not
>sure the best way to go about it.
Why not simply include them?
include 'head.html';
<?php
doSomething();
?>
include 'foot.html';
>I usually create functions for this, but then the designer has to
>change the code in the html and the php. Also, in the html where there
>is a " I have to change it to \" if I use echo to print it out.
You can use single-quotes as well, usually there's no need for escaping.
Micha
[Back to original message]
|