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

Bill Hinostroza
Bill Hinostroza
19,273 Points

Paypal Gift Message Integration Problem

Can anybody help me solve this problem?

Add an input field or textarea to the form that users can specify a value, something like "Gift Message." Be sure that this value gets displayed in the PayPal Shopping Cart after the item has been added to the cart.

It's From Integrating With Paypal. One of the PHP Courses.

I haven't found a way to display the gift messages after the user adds the item to their cart.

1 Answer

Hey Bill. Not sure if you already resolved this since you had posted your question a while back, but here's the solution that worked for me.

                <tr>
                  <th>
                    <input type="hidden" name="on2" value="Gift Message">
                    <label>Gift Message</label>
                  </th>
                  <td>
                    <textarea name="os2"></textarea>
                  </td>
                </tr>