Made the php includes much more modular and simpler by lumping them all in 1 file inc_all.php instead of all over the place

This commit is contained in:
johnnyq
2022-02-22 00:29:39 -05:00
parent 7af0c11720
commit 1829c7299e
59 changed files with 145 additions and 105 deletions

12
inc_all.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
include("config.php");
include_once("functions.php");
include("check_login.php");
include("header.php");
include("top_nav.php");
include("inc_side_nav.php");
include("inc_wrapper.php");
include("inc_alert_feedback.php");
?>