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 trialJoseph Damiani
1,066 PointsHTML Forms objective
I've read everyone's posts pertaining to this challenge. I haven't had any luck in getting the code to pass. Here is my code.
<!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" 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>
</body> </html>
1 Answer
Kamil Pawlik
1,484 Pointsmethod="post" not method="$_POST" :)
Joseph Damiani
1,066 PointsJoseph Damiani
1,066 PointsIt doesn't look like this code transposed above the select id. This is what I have above the code.
form action="process.php" method="$_POST"