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 Array Keys

Lost on loading the key into a variable

I have watched the videos over and over and cannot for the life of me figure out how to load the key into a variable.

2 Answers

I figured it out. I realised I need to load the key into the variable using the following syntax:

<?php foreach($books as $isbn => $book) { ?>
anguswhiston
anguswhiston
17,225 Points

Was there a video that helped you "get" this. I was struggling to understand it. I always try resist just putting in an answer from the forum, but I was really getting no where. Any links would be appreciated.

Matt Campbell
Matt Campbell
9,767 Points

You got it, by default, foreach gets the value of the key so you need to stipulate you want the key as well and then it's just echo $isbn to get it.