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 trial

JavaScript

Stuck on Paypal Integration Html Forms Code Challenge 3/3

Can't figure out what I've done wrong

    <form action="process.php" method="post">
    <input type="hidden" value="flavor">
    <input type="hidden" value="7546" name="order_id">  
    <label for="flavor">Flavor</label>
    <select name="flavor" id="flavor">
    <option value="">&#8212; Select &#8212;</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>

2 Answers

form action="process.php" method="post"
input type="hidden" value="flavor"
input type="hidden" value="7546" name="order_id"  
label for="flavor">Flavor</label
select name="flavor" id="flavor"
option value="">&#8212; Select &#8212;</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>

have you completed it yet?