Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create an HTML form to capture six grades. Make sure that you are capturing both the points earned and the points possible for each grade.
Create an HTML form to capture six grades.
Make sure that you are capturing both the points earned and the points possible for each grade.
Make note of the name that you give each input. Remember, this is how PHP will know how to retrieve those values.
Make sure your form has a submit action that points to the php script you will write in the subsequent steps.
Make sure your form method is set to post.
Create a PHP script to grab the values from the form you wrote in the last step.
Calculate the students grade for each assignment by dividing the points earned by the points possible for each grade.
Calculate the students overall grade by dividing the sum of the points earned by the sum of the points possible overall.
Write HTML to display the values you have collected from the form and the values you have calculated.
Test your application by calculating your current grade.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started