The following is my function:
function cat($a, $b)
{
$A = \"<b>$a</b>\";
$B = \"<b>$b</b>\";
return($A,$B);
}
list($A, $😎 = cat("eat", "mouse");
print "a = $A, b = $B";
?>
But I get the following error:
Parse error: parse error in /var/www/testing/php-3/php3/junk/date.php3 on line 9
What I am doing wrong?
Thanks in advance!