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

Matthew Smart
Matthew Smart
12,567 Points

Do not understand what this is asking me...

Finally, we need the form to submit a unique identifier for the order to the process.php file. We need to be able to access that value in an order_id element of the $_POST array, like this: $_POST["order_id"]. For this particular order, the order ID should be 7546. We don’t want this value displayed in the browser. What do we need to add to the form? (Hint: We need to add a new HTML element with three attributes.)

1 Answer

Karen de Graaf
Karen de Graaf
14,350 Points

The video before this code challenge explains it, it has three examples of how to do this (https://teamtreehouse.com/library/build-a-simple-php-application/integrating-with-paypal/creating-paypal-buttons). It's a input that is hidden to the user but it's send along when the user submits the form. (So you need to make a new input, hidden to the user, with a value that is already set)