is it possible for me to pass more than one variable when a function returns?
function catlist($cat) {
// code to find information .. $information
...........
// code to build some html
return $information, $html
}
In some cases it would be easire to have both things returned and ran in the same function.
is it possible to do it?
Thanks
David