hello
i am having trouble getting an include file to work. it displays the basic page but is not picking up the css or js that is in the header.php file. directory structure is like this:
admin/header.php
admin/js/jsfiles etc
admin/files/index.php
in files/index.php i have included the line <?php include("../header.php"); ?> which displays the header.php page but none of the js or css files. firebug is reporting them as 'not found.. what is the correct way to do this? many thanks
sample header.php with js and css etc
<script src="js/jquery-1.3.2.min.js"></script>
<link href="jmenu/css/jmenu.css" rel="stylesheet" type="text/css" />
these are just snippets of code in there.