I'm pretty sure someone has asked this before, but lets say I have this:

PHP Code:
$title "My Title";

if (
$action == 'view') {
  
view();
elseif (
$action == 'show') {
  
show();
}

function 
view() {
  echo 
$title;
}

function 
show() {
  echo 
$title;

Nothing shows up?