is there a PHP function that can execute codes buried in a string like the following example demonstrates:
Line1: $a = "$n = 999; echo $n"; Line2: execute($a);
The output of which is: 999
Thanks, Raymond
See eval()