Re: [PHP] Re: Execute php commands that are in an array

2008-06-05 Thread Gabriel Sosa
you can use eval http://ar2.php.net/manual/es/function.eval.php but remember escape all wildcard caracters try eval("\$a = 3; \$b = 2; \$c = \$a + \$b;"); echo $c // should show 5 saludos On Thu, Jun 5, 2008 at 1:46 PM, Ryan S <[EMAIL PROTECTED]> wrote: > Hey all! > Disregard my last email as i

[PHP] Re: Execute php commands that are in an array

2008-06-05 Thread Ryan S
Hey all! Disregard my last email as i solved it myself via eval()... Cheers! R Hey, its easier to start with code and then explain: $t_array[]='chr(rand(97,122))'; echo $t_array[0]; The above code outputs chr(rand(97,122)) How can i execute that above code from the array instead of dis