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

PHP Code Challenge $_POST

I need help with challenge number two.

http://teamtreehouse.com/library/build-a-simple-php-application/integrating-with-paypal/html-forms

This is my code so far.

<!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">

    </form>

</body>
</html>

1 Answer

Hi Domnick,

Your code looks good, but the challenge will only accept a lowercase method value. Recently, someone else had a similar problem and the answer mentioned that back in the day xhtml would not validate if the value was not all lowercase.

That is so dumb, thanks for helping me.