![]() |
|
|
+ Search |
![]()
|
Mar 23rd, 2001 13:54
Ben Udall, Andy Nash, http://www.php.net/manual/en/function.eval.php
The eval() function is probably what you want. It allows you to interpret a php string as php code. For example: $php_code = "echo 'Hello world';"; eval($php_code);