[snip]
eval('$return = $function($input);');
[/snip]

The problem is the quotes...the string is not truly being eval'd. Change
to double quotes

eval("$return = $function($input);");

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to