Answers for "php include file path different directory"

PHP
9

php include file path

<body>
<?php 
    define('ROOT_PATH', dirname(__DIR__).'/');
    include ROOT_PATH.'header.php';
    include ROOT_PATH.'main.php';
    include ROOT_PATH.'footer.php';
?>
</body>
Posted by: Guest on September-05-2021
0

php include file path

setlocale(LC_ALL,'C.UTF-8');
Posted by: Guest on October-29-2021

Code answers related to "php include file path different directory"

Browse Popular Code Answers by Language