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 Basic PHP Website (2018) Listing and Sorting Inventory Items Array Keys

modify the page to display each book's ISBN.

In this code challenge, we will modify the page to also display each book's ISBN.

First, we need to make the keys from the $books array accessible inside the foreach loop. Modify the foreach command so that, as it loops through the books, it loads the ISBN for each book into a working variable called $isbn. At the same time, it should continue loading the title of each book into the $book variable.

index.php
<?php

$books["978-0743261690"] = "Gilgamesh";
$books["978-0060931957"] = "The Odyssey";
$books["978-0192840509"] = "Aesop's Fables";
$books["978-0520227040"] = "Mahabharta";
$books["978-0393320978"] = "Beowulf";

?><html>
<head>
    <title>Five Great Books</title>
</head>
<body>
    <h1>Five Great Books</h1>
    <ul>
        <?php foreach($books as $book) { ?>
            <li><?php echo $book; ?></li>
        <?php } ?>
    </ul>
</body>
</html>

1 Answer

Joel Bardsley
Joel Bardsley
31,249 Points

As you'll know, foreach ($array as $array_value) doesn't assign the array keys to a variable, so for the challenge question $books as $book, the book title array value is stored in the $book variable, whereas the array key (in this case the ISBN number) doesn't get stored anywhere.

As the challenge uses an Associative array, in order to assign both the array keys and values to separate variables, you can modify the foreach loop as follows: foreach ($array as $array_key => $array_value)

As the question states to store the ISBN number in a $isbn variable, this can be applied as follows:

<?php
  foreach ($books as $isbn => $book) {
    // $isbn contains the ISBN number (array key) for each book
    // $book still contains the title (array value) for each book
  }
?>

Hope that helps.