rockinaway Posted April 27, 2012 Share Posted April 27, 2012 Okay I have 3 files in the following format: home/run.php home/config.php game/check.php In run.php, I have config.php required as 'home/config.php' and then in config.php I define an absolute path. However, I'm trying to require run.php from check.php but I keep getting an issue because then config.php isn't included. I've tried require using 'home/run.php', '../home/run.php' and even an absolute path. What do I need to do? Quote Link to comment https://forums.phpfreaks.com/topic/261691-problems-with-require/ Share on other sites More sharing options...
trq Posted April 27, 2012 Share Posted April 27, 2012 In run.php, I have config.php required as 'home/config.php' Firstly, that won't work. However, I'm trying to require run.php from check.php That would be ../home/run.php What do I need to do? Learn about file system paths. This really has little to do with php. Quote Link to comment https://forums.phpfreaks.com/topic/261691-problems-with-require/#findComment-1341040 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.