You can find all the back up files in the google drive. Files will frequently be backed up there so we do not lose any progress if anything happens
Ensure that all CSS files go into this directory. Remember to add links to your php files so styling gets applied. CSS for nav and footer is automatically added by adding include_once "include/head.inc.php"
Ensure that all JavaScript files go into js directory. JavaScript for nav and footer is automatically added by adding include_once "include/head.inc.php"
To be further worked on. Currently put all the images here for easy access. Will add more folders inside.
Also contains icons
directory to hold favicon for the page
- dbcon.inc.php
Contains php code to connect to database. To use, addinclude_once "include/dbcon.inc.php"
at where connection is supposed to take place. Remember to close connection with$conn->close()
- functions.inc.php
Contains all the functions that are needed across multiple files likesendMail()
. Add more functions as more pages are created. To use, addrequire_once "include/functions.inc.php"
at the start of php portion - head.inc.php
Update this as the project goes, if CSS/JS files are required in all pages, add them here for easy access. In all pages, the head should containinclude_once "include/head.inc.php"
- nav/footer.inc.php
Code for navbar and footer. Addinclude_once "include/nav.inc.php"
at the top of<body>
in all pages that require nav bar. Same for footer