blueman378 Posted December 4, 2007 Share Posted December 4, 2007 hi guys, i have a really long include eg, include "folder1/folder2/folder3/folder4/folder5/folder6/file.php"; and i want to make it so i can just call the include from a variable, eg type echo $file; and it will run the include at the moment i have $file = "include "folder1/folder2/folder3/folder4/folder5/folder6/file.php";"; it simply outputs include "folder1/folder2/folder3/folder4/folder5/folder6/file.php"; thanks Quote Link to comment Share on other sites More sharing options...
PHP_PhREEEk Posted December 4, 2007 Share Posted December 4, 2007 echo outputs to the browser. you are looking for eval(). but better yet, <?php $theInclude = 'folder1/folder2/folder3/folder4/folder5/folder6/file.php'; // code include "$theInclude"; not sure you need the quotes around it... PhREEEk Quote Link to comment Share on other sites More sharing options...
blueman378 Posted December 4, 2007 Author Share Posted December 4, 2007 haha true, thanks man you are awesome!!! Quote Link to comment 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.