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 trialMihaela Ioana
Courses Plus Student 890 PointsWhat's wrong in my code?
I don't understand what's wrong in my code and why i can't pass the task..
<!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" id="send">
<label for="flavor">Flavor</label>
<select id="flavor" name="flavor" from="send">
<option value="none">— 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>
1 Answer
Kevin Korte
28,149 PointsWhich step of the code challenge are you stuck on?
Mihaela Ioana
Courses Plus Student 890 PointsMihaela Ioana
Courses Plus Student 890 Pointsthe second one
Kevin Korte
28,149 PointsKevin Korte
28,149 PointsGottcha. Try lowercasing your post method. Either way should work, not sure why the quiz is so specific. I do think the W3 recommended way is lowercase, but again, either way works.
Mihaela Ioana
Courses Plus Student 890 PointsMihaela Ioana
Courses Plus Student 890 Pointsthank you for the advice i will try this on later