We selected the traditional LAMP Stack (Linux, Apache, MySQL/MariaDB, PHP) for this project. This choice directly aligns with the assignment requirement to use a "traditional database system" and ...
Create database and user: # Connect to PostgreSQL psql postgres # In PostgreSQL shell, run: CREATE DATABASE assignment_db; CREATE USER postgres WITH PASSWORD 'postgres'; GRANT ALL PRIVILEGES ON ...