Try to enable titlecase

This commit is contained in:
Fred Boniface 2022-10-29 21:05:25 +01:00
parent 2ffaa25482
commit 53807d6843
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ global $page_title;
if (strcmp($page_title, 'home') == 0){ if (strcmp($page_title, 'home') == 0){
include "./php/head-img-face.php"; include "./php/head-img-face.php";
} ?> } ?>
<h1><?php echo $page_title; ?></h1> <!-- Apply Title Case To This Output --> <h1><?php echo ucwords($page_title); ?></h1> <!-- Apply Title Case To This Output -->
</div> </div>
</div> </div>