/auth
(Backend files relative to "Auth")
/css
(Css files)
/database
(Main files of db operations)
home.php
(Files of the view)
The sample structure TAs provided is:
/example
/auth
login.php
/css
announce.css
event.css
home.css
login.css
/database
auth.php
database.php
anncs.php
events.php
home.php
login.php
signup.php
For example, if you want to manage the control of anncs.php, you may do the following changes by adding files (remark *):
/example
/anncs *
add.php *
delete.php *
edit.php *
/auth
login.php
/css
announce.css
event.css
home.css
login.css
/database
anncs.php *
auth.php
database.php
anncs.php
events.php
home.php
login.php
signup.php
There are several methods such as GET, POST , PUT, etc, for the web applications to transfer data between the websites.
In login.php
, I use the mothod POST there.