Hi peeps
I wonder if someone can tell me about having includes inside of includes.
Basically I have a $code_block =. "some small content"
but inside this small content, I need to refer to another include, something like this:
"page.php"
if (...){
$display_block = "text text";
}else{
include('../code_block.php');
$display_block = $code_block;
}
then
code_block.php
html html...
but here i need an include[/COLOR]
html html...
and here i need an include
html html...
So to recap I need to call an include inside an include?