Adds phpdoc comments
parent
a8a85b0666
commit
866af8acfe
|
@ -1,5 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Conference information
|
||||||
|
*
|
||||||
|
* This page ("conferences") handles the listing and searching of conferences from the database.
|
||||||
|
* It supports searching by conference ID, name, or listing all conferences within a specified time range.
|
||||||
|
*/
|
||||||
|
|
||||||
require '../app/classes/conference.php';
|
require '../app/classes/conference.php';
|
||||||
|
|
||||||
// connect to database
|
// connect to database
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
/**
|
/**
|
||||||
* User Login
|
* User Login
|
||||||
*
|
*
|
||||||
* this page ("login") handles user login, session management, cookie handling, and error logging.
|
* This page ("login") handles user login, session management, cookie handling, and error logging.
|
||||||
* Supports "remember me" functionality to extend session duration.
|
* Supports "remember me" functionality to extend session duration.
|
||||||
*
|
*
|
||||||
* Global Variables Used:
|
* Global Variables Used:
|
||||||
|
|
Loading…
Reference in New Issue