So I need to create a simple form where the user inputs a letter great in the text box, grades from A, B, C, D, or F and then gets a display saying a certain sentence.
<html>
<head>
<title>Letter Grades</title>
</head>
<body>
<form action="LetterGrades.php" method="get" >
<p>Grade: <input type="text" name="grade" />
<input type="submit" /></p>
</form>
</body>
</html>
Of course using the $_GET
method. Can anyone help out? Stuck at work with 1 other worker so I'm short staff.