depending on how "far back" what you are looking for is, it is also possible to start the the very beginning and then map your site from there....
take for example I am at the url
HTML Code:
dividinglimits.com/code/html/templates/home.html
and on that page I need to get an image that is in my "images" folder that is on
HTML Code:
dividinglimits.com/images
there are a couple ways of doing that, you could use a relative path
HTML Code:
<img src="../../../top_bg.gif" alt="top background" />
or i could use a path from "home"
HTML Code:
<img src="/images/top_bg.gif" alt="top background" />
now those would both point to the same image at the same place on the server, but they are 2 entirely different methods of getting there.
One is not necessarily better then the other, as they both have pro's n con's; they're just differnet ways, and which ya use it up to you
Bookmarks