何らかの理由でh1だけが言うArma 3へようこそLife Highway Patrol'sECHOがPHPからのHTMLに表示されない
アイデアはありますか?
<?php
//This file will contain the page name and the credits!
function thisPage($page){
if ($page == 'sops.php'){
$Npage = 'SOPs';
return $Npage;
}elseif ($page == 'changelog.php'){
$Npage = 'Website Changelog';
return $Npage;
}elseif ($page == 'ftodocuments.php'){
$Npage = 'FTO Documents';
return $Npage;
}elseif ($page == 'index.php'){
$Npage = 'Homepage';
return $Npage;
}elseif ($page == 'login.php'){
$Npage = 'FTO Login Page';
return $Npage;
}elseif ($page == 'socialstuff.php'){
$NPage = 'Social Stuff';
return $Npage;
}else{
return false;
}
}
?>
<?php
$findPage = (basename($_SERVER['PHP_SELF']));
$thisPageName = thisPage($findPage);
?>
<h1>Welcome to the Arma 3 Life Highway Patrol's <?php echo $thisPageName ?></h1>
<p> Website created by Austin Sharp and assisted by Greyson Henley.</p>
セミコロンがありません。 –
関数がfalseを返すため何も表示されません。 – CodeGodie