Does PHP have an equivilent to Server Side Includes? Working the exact same way, just basically dumping the code from one file to the place specified? If so, how?
Thanks!
I use the include function...just stick it anywhere in your HTML:
<? include "footer.html"; ?>
Thank you!
include("path to your file");