$y) { return $x; } else { return $y; } } $x = 3; $y = 5; echo "The largest of " . $x . " and " . $y . " is " . largest($x, $y); ?>