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

Juliette Tworsey
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Juliette Tworsey
Front End Web Development Techdegree Graduate 32,425 Points

<input type = "hidden" name = "order_id" value = $_POST[7546] >

Hiya there! I am going through this course again to get a refresher and to see how much I have retained, though I am stuck on this one challenge.

Can anyone see the mistake that I am making?

Thanks!

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">
            <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">
        <input type = "hidden" name = "order_id" value = $_POST[7546]  >


    </form>

</body>
</html>

1 Answer

Jeff Lemay
Jeff Lemay
14,268 Points

Just update the value of the order_id:

<input type="hidden" name="order_id" value="7546"  >

What you had for a value is how you'll access that value in the form process.