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 trialJuliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsTask 3 of 3, Stage % Integrating with Paypal
Can anyone see what is wrong in the hidden field's name attribute?
I'm stuck.
Thanks:-)
<!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">
<input type="hidden" name="—" value="7546">
<label for="flavor" >Flavor</label>
<select id="flavor" name="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">
</form>
</body>
</html>
5 Answers
Felix Wahlberg
11,672 PointsThe name needs to be order_id
Felix Wahlberg
11,672 PointsThe name needs to be order_id
Timmy Showler
Courses Plus Student 867 PointsBy looking at it, it looks like you've added the ' & ' Symbols, maybe change them?
Because you use the & symbols when wanting to use a special character. Maybe the file is thinking that?
Ramrakesh Azhagesan
7,238 PointsI am too facing the same issue!! What was it added to overcome the & symbol?
Timmy Showler
Courses Plus Student 867 PointsThese two:
<input type="hidden" name="—" value="7546">
<option value="">— Select —</option>
They both have the & symbol.
Try changing the & symbol to this:
&
Juliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsJuliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsThanks Felix!