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 trialAlbert 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,610 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,610 PointsJason Anello
Courses Plus Student 94,610 PointsAndrew beat me to it. :)
Andrew Lima
5,233 PointsAndrew Lima
5,233 PointsJason Anello haha barely! :)