funzionaaaaaa!

basta utilizzare l eval cosi:


codice:
<?php

$VAR_a=12;
$VAR_b=13;
$test="VAR_a + VAR_b";

$test=str_replace("VAR_","\$VAR_",$test);

eval("\$test = \"$test\";");



echo $test."
";
eval ("\$test = $test;");
echo $test;

?>

ciao ciao

igor