5. PHP Forms - Exercises Started: Feb 12 at 3:42am Quiz Instructions Question 1 1 pts If the form in the white section below gets submitted, how can you, in welcome.php, output the value from the "first name" field? Fill in the blank.
First name:
Welcome $_GET["fname"]; ?> Question 2 1 pts If the form in the white section below gets submitted, how can you, in welcome.php, output the value from the "first name" field?. Hint: The http method is not the same as in Exercise 1. Fill in the blank.
First name:
Welcome $_POST["fname"]; ?>