Alright Guys, having trouble figuring this out.
I have stylesheets in a directory call css with sub-directories index, error etc. Now I have a main layout.class.php that is responsible for writing the <html> tags and including the css files. However given that each file that uses this class may be in different direcotries there is the problem, since if i include say error.css in the layout.class.php file as ../css/error/error.css, then that may be ok for one file, but if i inlcude it in a file that is two directories down this would then have to be ../../, hope you understand this and see the problem. I can think of one solution by using c:/Intranet/css/ but am looking for clean alternatives.
Thanks.