I have a function,
function output($output) {
echo $output;
}
I have a variable,
$myvar = 'This is my variable. The output is X';
How do I combine the two?
I've tried:
$myvar = 'This is my variable. The output is' . output("this thing");
But no such luck.