I use some template sytem and the text is included this way;
$text = "blabla blal bla bla"
Now is the problem that i want some php included.
but $text = "blabla blal bla bla <?php include (\"include_this.php\") ?>"
doesnt work
I ve also tried the following:
$text = "blabla blal bla bla include (\"include_this.php\") "
because im alread in a the php code. but it doenst work either
edit: ive made some layout. In the layout file stands <? write "$text" ?>
In the text file is the folling code include ('layout.php').
and $text = "blablalblalblalalb"
Now i want in the $text a php include. but
$text = "blablalblalblalbla
<?php include ('includephp') ?>
blablalblalblalbla"
doenst works
Hope now u people understand what i mean
Ps. i include the text with <?php write "$text" ?>
Last edited by devroom on Wed Jan 04, 2006 4:07 pm; edited 2 times in total
$text = "blabla blal bla bla"
Now is the problem that i want some php included.
but $text = "blabla blal bla bla <?php include (\"include_this.php\") ?>"
doesnt work
I ve also tried the following:
$text = "blabla blal bla bla include (\"include_this.php\") "
because im alread in a the php code. but it doenst work either
edit: ive made some layout. In the layout file stands <? write "$text" ?>
In the text file is the folling code include ('layout.php').
and $text = "blablalblalblalalb"
Now i want in the $text a php include. but
$text = "blablalblalblalbla
<?php include ('includephp') ?>
blablalblalblalbla"
doenst works
Hope now u people understand what i mean
Ps. i include the text with <?php write "$text" ?>
Last edited by devroom on Wed Jan 04, 2006 4:07 pm; edited 2 times in total
