Okay, first; I'm relatively new to php. I know the basics but nothing too fancy.
I'm developing a website where the header and the footer stay the same on which ever page you are. But the problem is this (obviously).
The index.php looks like this:
<?php include("header.php") ?>
// Body content
<?php include("footer.php") ?>
In the header.php there's also the < head> tag. When I change a page that is in an underlying folder, the css path ofcourse stays the same (so without the "../" ). And there's my problem, is this fixable or do I have to exclude the < head> tag from the header.php?
Thank's in advance.