I have a header and footer file I include throughout the entire site - they hold the "template" basically for the site.
Usually all the image tags I use have the absolute path included in both the header and footer file to avoid the problem of broken images once you get out of the top level directory and are inside a sub directory.
example - <img src = "http://www.mysite.com/images/picture.jpg">
because this would not work (results in broken image links) - <img src = "images/picture.jpg">
This is my question -
Is there a way to avoid the problems with broken images in your site that could make the site more portable while still using includes in the site?