I currently have an index.php file and on the top i have
$pagetitle == "home";
function isThisHome(){
if($pagetitle == "home"){
$output = $output . 'this is home!';
}else{
$output = $output . 'this is not home!';
}
return $output;
}
echo isThisHome();
I'd expect that it would echo "this is home!" but instead it's echoing "this is not home!". Can someone help correct me to make it say "this is home"?