Thank u for the answer, but i think that the answer is not what i want.
I mean, is there any function that execute variable?
I\'ve tried add into the function and it is work. But I don\'t know is there an chance to execute this variable.
i will give a simple example :
<?
$b =
\"
for ($i=0; $i<3; $i++) {
print $i;
}
\";
$a = \"this is a #vol\";
$a = ereg_replace(\"#vol\",$b,$a);
?>
and my question :
what is a command that can execute $a and give me a result like this
\"this is a 012\"
thanks\' before.