Homework 5: Web hosting, PHP basics
- Due Sep 19, 2024 by 9:30am
- Points 1
- Submitting a website url
- Available after Sep 17, 2024 at 9:30am
Watch these videos:
- Web hosting (YouTube Links to an external site.)
- PHP basics (YouTube Links to an external site.)—also see this quick reference page Links to an external site.
Take the current quizzer code (see the GitHub folder here Links to an external site.) and update it so that:
- the admin and quizzer views are in their own files (quizzer.php and quizzer-admin.php)
- nothing should be loaded into the quizzer view via JavaScript when loaded (you don't have to remove the loadQuiz function, just comment out any calls to it)
- at the top of quizzer.php, create a PHP associative array of question-answer pairs (this will need to be in PHP tags)—populate this with some dummy questions and answers
- inside of the #quiz ordered list, use a PHP foreach loop to add a list item for each question along with a text area (in the same way these were produced in loadQuiz)
- make sure it works—when you load quizzer.php, you should see the dummy questions you added along with empty text areas
As with all homework, you may collaborate freely with others.
Commit your work to your CSC302 GitHub repository. It should be in the folder: homework/hw5. Submit a link to your repository to this Canvas assignment.