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 trialJuan Correa
3,451 PointsI don't know whats wrong with this: <?php foreach($books as $book) { $isbn = $book['ISBN']; print_r($isbn); ?>
Why is my code wrong? It adds each book ISBN to the variable $isbn, when I use the print_r command I see all the ISBN numbers. Please help me!
<?php
$books[1] = array("ISBN"=>"978-0743261690", "title"=> "Gilgamesh");
$books[2] = array("ISBN"=>"978-0060931957", "title"=> "The Odyssey");
$books[3] = array("ISBN"=>"978-0192840509", "title"=> "Aesop's Fables");
$books[4] = array("ISBN"=>"978-0520227040", "title"=> "Mahabharta");
$books[5] = array("ISBN"=>"978-0393320978", "title"=> "Beowulf");
?><html>
<head>
<title>Five Great Books</title>
</head>
<body>
<h1>Five Great Books</h1>
<ul>
<?php foreach($books as $book) { ?>
<li><?php $isbn = $book['ISBN'];
print_r($isbn);?></li>
<?php } ?>
</ul>
</body>
</html>
2 Answers
Kristian Terziev
28,449 PointsFirst of all - You shouldn't change the original array that is given to you. You can access the key of each element with a little change in your "foreach" loop. It goes as such:
foreach ($books as $isbn => $book) {
...some code...
}
What this does is the following - it stores the key in a variable called $isbn and the element itself in $book (in this case the name of the book). From here you can access both the isbn of a book (through the $isbn variable) and it's title.
So when you're asked to print both the title and the isbn it goes like this:
<?php foreach($books as $isbn => $book) { ?>
<li><?php echo $book . " (" . $isbn . ")"; ?></li>
<?php } ?>
Once again, leave the array as such:
$books["978-0743261690"] = "Gilgamesh";
$books["978-0060931957"] = "The Odyssey";
$books["978-0192840509"] = "Aesop's Fables";
$books["978-0520227040"] = "Mahabharta";
$books["978-0393320978"] = "Beowulf";
Juan Correa
3,451 PointsThank you for your help Kristian!
Kristian Terziev
28,449 PointsYou're very welcome. If you need anything else, be sure to ask.