How do I prevent the output of a user defined function from going to the
browser?
In my script I do something like:
$MyVar = MyFunction($var1,$var);
which works, except that the output from MyFunction is sent to the
browser. I simply want it to set in the variable.
Any help is much appreciated.