I'm new to PHP and I'm having a problem with the require_once function.
When I call the function require_once("/a/b/c/d/e.php");, the function crashes although the path is correct for the file.
Does anyone know why this is happening?
I'm new to PHP and I'm having a problem with the require_once function.
When I call the function require_once("/a/b/c/d/e.php");, the function crashes although the path is correct for the file.
Does anyone know why this is happening?
 
    
     
    
    Include another file in PHP class
try require_once(dirname(__FILE__)."/a/b/c/d/e.php")
 
    
    