test006 Posted April 29, 2006 Share Posted April 29, 2006 Hi,I have read the following tutorial Including Files in PHP - Beginner Tutorial and i still have some questions. I came across this when working on my current project.I have all my php files under following directory:/var/www/test/codeSo all my php scripts are under code directory as shown above....No i want to include files within my php scripts that are from a directory that is not inside /var/www directory.I want to have a include directory that inside /var directory so my include directory is /var/include.My question is how do i include files in my script that are located in a directory that is outside the /var/www directory as in my case this is /var/include directory...Do i need to enable read permissions for my web server to be able to read files from /var/include directory??Please advise...Thanks for help in advance.. Link to comment https://forums.phpfreaks.com/topic/8695-include-files-in-php/ Share on other sites More sharing options...
jarsky Posted April 29, 2006 Share Posted April 29, 2006 nope you dont, easiest way to do it would be to change[code]include("file.inc.php");[/code]to[code]include("../../include/file.inc.php");[/code]for every ../ you add it will jump back 1 directory :) Link to comment https://forums.phpfreaks.com/topic/8695-include-files-in-php/#findComment-31910 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.