Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMUZ140306 Blessing Muhakichi
1,627 Points2 of 3
i have no clue on this
<!DOCTYPE html>
<html>
<head>
<title>Ye Olde Ice Cream Shoppe</title>
</head>
<body>
<p>Your order has been created. What flavor of ice cream would you like to add to it?</p>
<form action="process.php" method="POST">
<label for="flavor">Flavor</label>
<select id="flavor" >
<option value="">— Select —</option>
<option value="Vanilla">Vanilla</option>
<option value="Chocolate">Chocolate</option>
<option value="Strawberry">Strawberry</option>
<option value="Cookie Dough">Cookie Dough</option>
</select>
<input type="submit" value="Update Order">
</form>
</body>
</html>
2 Answers
Erik McClintock
45,783 PointsLooks like you've got half of Task 2 by adding the method="post"
, so that's good! The piece you're missing is the name
attribute on your select element. Recall that this attribute is used to reference form data after the submission.
Erik
Andrews Gyamfi
Courses Plus Student 15,658 PointsHi Blessing,
Task 2 of 3 requires that we:
- set an HTTP method for the form firstly and,
- set a 'name' attribute for the select element so it could be accessed through the $_POST variable.
You have done the first bit of it (setting the HTTP method to POST) but you have not added the name attribute with the value "flavor" to the select element. Add it as shown below and your code should work fine.
<form action='process.php' method="post">
<label for="flavor">Flavor</label>
<select id="flavor" name="flavor">
<option value="">— Select —</option>
<option value="Vanilla">Vanilla</option>
<option value="Chocolate">Chocolate</option>
<option value="Strawberry">Strawberry</option>
<option value="Cookie Dough">Cookie Dough</option>
</select>
<input type="submit" value="Update Order">
</form>
Cheers!