PHP techniques used in this program:
- Handling a MySQL SELECT query that returns more than one record (see the "while..." statement in NewMediaLounge.php)
- Building an anchor tag in PHP using the results of a MySQL SELECT query (see the "$diplaylink=" statements in NewMediaLounge.php)
- Building a paragraph tag in PHP (with CSS class reference) using the results of a MySQL SELECT query (see the "$diplaycomment=" statements in NewMediaLounge.php)
- Using the result of a MySQL query to build an HTML form (see "$displayform =" in EditNML.php)
- Displaying a single page differently based on an if statement (see "If (isset(..." in EditNML.php)
- --Related to this: having a form action that calls the page it is on (note "action=EditNML.php" in the first form of EditNML.php)
- Syntax of an SQL statement that updates the information in a database (see "$sql="UPDATE..." statement in submitinfo.php)
- Using the include function to display a page reflecting the results of a MySQL query (see include "NewMediaLounge.php" statement in submitinfo.php);