Just archiving this project from my Open Source Software class.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
$fileName = basename(__FILE__, ".php"); //grabs the file name and drops the extension
|
||||
$fileName = str_replace('-', ' ', $fileName); //replaces all hypens with a space
|
||||
$fileName = ucwords($fileName); //capitalizes the first letter of every word
|
||||
include("templates/header.php");
|
||||
?>
|
||||
Reference in New Issue
Block a user