I usally try my self but brand new with php everyone else did perl in my class but me so Im screwed with no ideas. Maybe somone can do this with comments lots of them please means a lot its actualy a no mark assignment but I want learn it still..
(1) Create an HTML form with 6 textboxes:
• Student Name
• Gender (M/F)
• Test 1 Score
• Test 2 Score
• Test 3 Score
• Test 4 ScoreAll test scores are out of 100
Test weights are 15%, 20%, 25%, 40% respectively
(2) Create a PHP script that reads these test scores and returns:
• Student Name followed by 3 spaces and either (Male) or (Female)
• Use the switch statement to convert m/f male/female
• The 4 Test Scores
• Average
• Letter Grade (A, B, C, D, X)
o A >= 80
o B >= 70
o C >= 60
o D >= 50
o X < 50
Thanks!