Quote:
Originally Posted by psili
That's a pretty trick solution. I dig how you hack stuff together. I'm just curious, does [somepage].html with "footer.html" inserted into the bottom of it now have an "</html>" tag followed by more html markup?
Yea, yea, yea, I know it really doesn't matter in the end, but was just curious. On a side note, since you're the fire bear, can you get rid of the snow in colorado for me?
|
yes it would but you could do this i think
<?php
$footer = "footer.html";
$file = $_SERVER["PATH_TRANSLATED"];
$rep = file_get_contents($file);
$rep = str_replace("</html","",$rep);
echo $rep;
readfile($footer);
?>