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 Link to comment https://forums.phpfreaks.com/topic/80099-solved-make-a-php-include-so-it-can-be-called-from-a-variable/ 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 Link to comment https://forums.phpfreaks.com/topic/80099-solved-make-a-php-include-so-it-can-be-called-from-a-variable/#findComment-405934 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!!! Link to comment https://forums.phpfreaks.com/topic/80099-solved-make-a-php-include-so-it-can-be-called-from-a-variable/#findComment-405936 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.