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

Don't remember what to do...

<!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 method="$_POST" action="process.php">

        <label for="flavor">Flavor</label>
      <select method="$_GET" 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>

</body>
</html>

3 Answers

What exactly are you having trouble remembering?

whatever they're asking to do lol. $_POST

I'm not exactly sure what exercise you're working on, but I can tell you based off of your HTML, that there is no form action whose value is $_POST. $_POST is the PHP associative array used by the server to process the user's post submission. Instead, you might try using <form method="POST" action="process.php">.

Other than that, let us know what specifically need help with, and we can better assist you.