Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

trishagawley
10,483 PointsCode Challenge HTML Forms 3/3
I'm having trouble with 3/3. It says that I am missing an attribute. Could someone help me out?
<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">
<input type="hidden" value="Flavors">
<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="hidden" value="7546" name="order_id">
<input type="submit" value="Update Order">
</form>
</body> </html>
2 Answers

Waqar Mohammad
iOS Development Techdegree Student 9,914 PointsTrisha, Could you post the full question please?
trishagawley
10,483 Pointstrishagawley
10,483 PointsHere is the 3rd Challenge:
Finally, we need the form to submit a unique identifier for the order to the process.php file. We need to be able to access that value in an “order_id” element of the $_POST array like this: $_POST["order_id"]. For this particular order, the order ID should be 7546. We don’t want this value displayed in the browser. What do we need to add to the form? (Hint: We need to add a new HTML element with three attributes.)
Thank you for your help!
trishagawley
10,483 Pointstrishagawley
10,483 PointsWaqar, I figured it out and finally passed the challenge!!
<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">
<input type="submit" value="Update Order">
</form>