I need to return multiple values from a function, therefore I have added them to an array and returned the array.
function data(){ $a = "abc&qu
you can do this:
list($a, $b, $c) = data(); print "$a $b $c"; // "abc def ghi"