Just archiving this project from my Open Source Software class.

This commit is contained in:
2021-01-26 16:41:13 -06:00
commit d1bac9a520
50 changed files with 19232 additions and 0 deletions
+6
View File
@@ -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");
?>