| add.php: | Adds a record to the database. Used by show.php. |
| delete.php: | Deletes a record. Used by show.php. |
| config.php: | Configuration variables common to all scripts. Basically, MySQL variables. |
| print.php: | Displays a printable format, using HTML tables. You can go to this page directly. |
| show.php: | The main page. Displays records, allowing you to sort them by clicking on column headers. Also allows you to add, update, and delete records. |
| update: | Updates a record. Used by show.php. |
| create_table.sql: | SQL create statements to create the "apartments" table in your database. Use it like: "mysql -u [username] -p[password] < create_table.sql" |