I'm pretty sure someone has asked this before, but lets say I have this:
Nothing shows up?PHP Code:$title = "My Title";
if ($action == 'view') {
view();
elseif ($action == 'show') {
show();
}
function view() {
echo $title;
}
function show() {
echo $title;
}




Reply With Quote