The "eval()" function will run PHP code. For example (taken from the PHP Manual)
$string = 'cup';
$name = 'coffee';
$str = 'This is a $string with my $name in it.<br>';
echo $str;
eval ("\$str = \"$str\";");
echo $str;
This example will produce:
This is a $string with my $name in it.
This is a cup with my coffee in it.
But I agree with mmilano .... it doesn't sound like a good idea .... it sounds a bit scary !!!