my php scripts are not working after hosted in server they do work good in localhost i did change the php versions as well. Localhost its php 5.6 and changed it to 5.6 in server too still php commands doesn’t work
eg : very simply php includes command for navbar and fotter doesnt work why?
Can you please provide a bit more information about the issue. What do you see exactly when it “doesnt work”? Do you see any error messages?
my includes commands are not running. so the webpage is not having the nav bar and footer
check this " http://gofaadil.epizy.com "
Put contents in your index.php into a text file and upload to your root directory, and mention the text file name. Or simply reply with your index.php content.
thanks but this is the issue
<header class=“header_area”>
<div class=“main_menu”>
<?php include_once(“…/atlatictech/includes/navbar.php”) ?>
</div>
</header>
this script is not working
Maybe this can help you,
i used below code snippet and it worked
<?php $path = $_SERVER['DOCUMENT_ROOT']; $path .= "/includes/title.php"; include_once($path); ?>This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.