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

PHP Build a Simple PHP Application Integrating with PayPal HTML Forms

3 of 3

Got stuck on this one, help

form.html
<!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">
     <input type="hidden" > 
        <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>

</body>
</html>

1 Answer

Grace Kelly
Grace Kelly
33,990 Points

Your input needs three attributes: type, name and value like so :

<input type="hidden" name="order_id" value="7546">
Dave Berning
Dave Berning
17,365 Points

I'm not familiar with the exercise but you have your hidden input field nested in your select option. I generally put all my hidden input fields at the end of the form before the submit button. The user will never we able to see them anyway. Plus, having an input in a select might be invalid code, however I'm not 100% sure on that though.