Adds phpdoc comments

main
Yasen Pramatarov 2024-11-28 16:49:47 +02:00
parent a8a85b0666
commit 866af8acfe
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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: