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

Albert Kirchmeyr
Albert Kirchmeyr
11,410 Points

challenge php development Integrating with paypal

First I wrote: name="Flavor" it says attr ok and select section ok but name should be flavor I change this and it wants to change the submit methode.... can anyone help me out?

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" methode="post">

        <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" name="submit">

    </form>

</body>
</html>

3 Answers

Andrew Lima
Andrew Lima
5,233 Points

Which method do you want to use?

Check this line of code change from methode to method. <form action="process.php" method="post">

Andrew beat me to it. :)

Hi Albert,

Your only issue for task 2 is that you have a typo on your method attribute. methode="post"

You shouldn't have an 'e' on the end of 'method'

Albert Kirchmeyr
Albert Kirchmeyr
11,410 Points

Thank you so much guys for the quick answer! Simple error, but couldnยดt find it b4 turning into beast mode :)