I keep getting an error that says function name must be in a string or it simply runs but doesn't print either string in the function. What am I missing?
<?php
$funName="{'$oneRun()'}";
echo "Hello You are running ".$funName."\n\n$";
function oneRun()
{ echo "Running Function One";return "one";}
function twoRun()
{ echo "Leave me alone, go bug Function One";return "two";}
?>