foreverhex Posted June 21, 2006 Share Posted June 21, 2006 Is there any way to use the include php feature to read the files varibles and not the literal text. For example my file reads like this.[code]$file = "bleh.txt";include '$file';echo 'you are';echo $bleh;[/code]and bleh.txt[code]$bleh = "bleh";[/code]I want it to come out "you are bleh" not "you are $bleh = "bleh";".If that made any since, please help.Ah! never mind! All I had to do is add <?php at the begining of txt file and rename the txt file php.Ah! never mind! All I had to do is add <?php at the begining of txt file and rename the txt file php. Quote Link to comment https://forums.phpfreaks.com/topic/12497-include-feature/ Share on other sites More sharing options...
redarrow Posted June 21, 2006 Share Posted June 21, 2006 test.php[code]include "test_result.php";echo "<br>you are $bleh<br>";[/code]test_result.php[code]$bleh = "bleh";[/code] Quote Link to comment https://forums.phpfreaks.com/topic/12497-include-feature/#findComment-47845 Share on other sites More sharing options...
foreverhex Posted June 21, 2006 Author Share Posted June 21, 2006 are the ( ) required? I never use them and everthing seems to be fine. Quote Link to comment https://forums.phpfreaks.com/topic/12497-include-feature/#findComment-47846 Share on other sites More sharing options...
redarrow Posted June 21, 2006 Share Posted June 21, 2006 [!--quoteo(post=386203:date=Jun 21 2006, 12:09 AM:name=foreverhex)--][div class=\'quotetop\']QUOTE(foreverhex @ Jun 21 2006, 12:09 AM) [snapback]386203[/snapback][/div][div class=\'quotemain\'][!--quotec--]are the ( ) required? I never use them and everthing seems to be fine.[/quote]sorry no () Quote Link to comment https://forums.phpfreaks.com/topic/12497-include-feature/#findComment-47849 Share on other sites More sharing options...
steelmanronald06 Posted June 21, 2006 Share Posted June 21, 2006 include 'test.php';include ('test.php');include ($_SERVER['DOCUMENT_ROOT']./'test.php');All of those will work. Quote Link to comment https://forums.phpfreaks.com/topic/12497-include-feature/#findComment-47850 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.