Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

WEBG301_Project Web_Assignment, Assignments of Web Application Development

The Project Web course will teach how to build modern web applications based on the Model-View-Controller pattern. Universal techniques for working with dynamic content are studied, which are applied in virtually every web application – using HTML templates, query, routing, presenting information in objects related to a relational database, etc. The course ends with the development and protection of a practical web project. The assessment in the course is based on practical examination

Typology: Assignments

2021/2022

Available from 06/01/2023

TuanAnhMai
TuanAnhMai 🇬🇧

5

(3)

24 documents

1 / 12

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
ASSIGNMENT 01 FRONT SHEET
Qualification BTEC Level 5 HND Diploma in Computing
Unit number and title Unit 10: Project Web
Submission date Date Received 1st submission
Re-submission Date Date Received 2nd submission
Student Name Student ID
Class GCD0904 Assessor name Hoang Nhu Vinh
Student declaration
I certify that the assignment submission is entirely my own work and I fully understand the consequences of plagiarism. I understand that making a
false declaration is a form of malpractice.
Student’s signature
Grading grid
P1 P2 P3 P4 M1 M2 D1 D2
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download WEBG301_Project Web_Assignment and more Assignments Web Application Development in PDF only on Docsity!

ASSIGNMENT 01 FRONT SHEET

Qualification BTEC Level 5 HND Diploma in Computing

Unit number and title Unit 10: Project Web

Submission date Date Received 1st submission

Re-submission Date Date Received 2nd submission

Student Name Student ID

Class GCD0904 Assessor name Hoang Nhu Vinh

Student declaration

I certify that the assignment submission is entirely my own work and I fully understand the consequences of plagiarism. I understand that making a

false declaration is a form of malpractice.

Student’s signature

Grading grid

P1 P2 P3 P4 M1 M2 D1 D

❒ Summative Feedback: ❒ Resubmission Feedback:

Grade: Assessor Signature: Date:

Internal Verifier’s Comments:

Signature & Date:

Figure 2 : Entity Relationship Diagram (ERD) Chapter 3 – Implementation I. Sample Source Code

  1. Source Code of function “Create” This function is used to create new data into the website's database, specifically here it is used to add a student's subject score to the scoreboard on the website. After the user enters the necessary data into the form, the website will display a button on the screen that allows the user to return to the main screen with the data he just entered has been added to the table.

Figure 3 : Source Code of "Create" Function

  1. Source code of “Read” function This function is used to display the data entered into the website's database on the screen, here it is used to display the list of students with their major on the screen. After the data of the students is generated from the "Create" function, the website saves these data in its database and these data are printed to the screen by the "Read" function. Figure 4 : Source code of "Read" function
  2. Source code of “Delete” function This function is used to delete data in the database of the website, specifically here it is used to delete a student's score based on the student's id and the name of that subject. After the user clicks the "delete" button on the homepage, the website will show whether it was successful and display a button that allows the user to return to the homepage.

information as well as perform CRUD action to the subjects inside the system. Every account that being registered by the user will be automatically assigned as role user

  • This is the login function. This function will basically get information from the box, check with the data inside database to see whether there are any accounts that matched with the user input, then return the result to the customer. II. Images of Final Application
  • When user login as admin account
  • When user login as user account
  • Register function