Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Albert Kirchmeyr
11,410 Pointschallenge 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?
<!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="">— Select —</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
5,233 PointsWhich method do you want to use?
Check this line of code change from methode to method.
<form action="process.php" method="post">

Jason Anello
Courses Plus Student 94,592 PointsHi 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
11,410 PointsThank you so much guys for the quick answer! Simple error, but couldn´t find it b4 turning into beast mode :)
Jason Anello
Courses Plus Student 94,592 PointsJason Anello
Courses Plus Student 94,592 PointsAndrew beat me to it. :)
Andrew Lima
5,233 PointsAndrew Lima
5,233 PointsJason Anello haha barely! :)