I have some existing functions that do some database queries, and output html. I want this output to be stored in a variable. Is there a way to do this WITHOUT changing the functions (ex. i know i can just do return $output..)...Can I use eval() like this: $ouput = eval("\$modules->display_poll()"); ..and then just echo $output?
Sriram