[email protected] Posted November 22, 2009 Share Posted November 22, 2009 Myfile "file1.php" is in [content] folder I need to include a file "connection.php" which is in [include] folder These two folders [content] and [include] are at same level. How do I require("connection.php") in file1.php Link to comment https://forums.phpfreaks.com/topic/182476-include-a-file-in-other-folder/ Share on other sites More sharing options...
emopoops Posted November 22, 2009 Share Posted November 22, 2009 require($_SERVER["DOCUMENT_ROOT"] . "/rawr/vgvhr.php"); Link to comment https://forums.phpfreaks.com/topic/182476-include-a-file-in-other-folder/#findComment-963039 Share on other sites More sharing options...
Alex Posted November 22, 2009 Share Posted November 22, 2009 require '../include/connection.php'; - ../ is used to go up a level in a directory structure. Link to comment https://forums.phpfreaks.com/topic/182476-include-a-file-in-other-folder/#findComment-963043 Share on other sites More sharing options...
[email protected] Posted November 22, 2009 Author Share Posted November 22, 2009 I am getting a warning and fatal error stating the file is not present?? Link to comment https://forums.phpfreaks.com/topic/182476-include-a-file-in-other-folder/#findComment-963050 Share on other sites More sharing options...
Alex Posted November 22, 2009 Share Posted November 22, 2009 Your directory structure is like this, correct? include connection.php content file1.php If so to access connection.php the correct path would be ../include/connection.php Link to comment https://forums.phpfreaks.com/topic/182476-include-a-file-in-other-folder/#findComment-963051 Share on other sites More sharing options...
[email protected] Posted November 22, 2009 Author Share Posted November 22, 2009 Thats right Alex... but I fixed it by altering the files. But thanks u showed me something new... Link to comment https://forums.phpfreaks.com/topic/182476-include-a-file-in-other-folder/#findComment-963057 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.