Hi All, I want a help regarding (include) file in php. I have a website of 100 pages for that I create header.php and footer.php. My website have two to three major categories. For that i create sub category in root folder like http://xyz.com/a/index.html. My code is running under root folder successfully but not in sub folder. This is my code <?php include ("include/header.php"); ?> Please help me. Thanks Bhuvan
Hi put this code <?php $rootpath = $_SERVER['DOCUMENT_ROOT']; include($rootpath.'/include/header.php'); ?> PHP: