Hey all. I'm fairly new to php and have ran into the following problem.
I'm trying to include a file from the root directory to a file in a sub-directory
Structure
root directory \www\ contains header.php which contains images in same folder
sub directory \www\test\ contains test.php which includes header.php
<?php include("../header.php"); ?>
The include works , but the images don't show up. The image paths on the page show up as being in the \www\test\ folder when infact the header.php has then in the same root folder.
Thanks in advance...