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 trialmelk
24,762 PointsI do not understand why this is incorrect.
while ($row = $results->fetch(PDO::FETCH_ASSOC)) { $item[$row["genre_id"]][] = $row["genre"]; }
<?php
include "helper.php";
/*
* helper contains the following variables:
* $item is an array that contains details about the library item
* $results is a PDOstatement object with our genre results.
*/
while ($row = $results->fetch(PDO::FETCH_ASSOC)) {
$item[$row["genre_id"]][] = $row["genre"];
}
3 Answers
Joel Bardsley
31,249 PointsYou're not far off. Referring to the $item array structure in the challenge:
array(8) {
...
["genres"]=>
array(2) {
[3]=>
string(6) "Comedy"
[16]=>
string(6) "Sci-Fi"
}
}
You need to add to the $item["genres"] array with a key/value pairing of "genre_id" => "genre". To add to the $item["genres"] array you can do:
$item["genres"]["key"] = "value";
Hope that helps.
Simon Coates
28,694 PointsFollowing seems to pass the test, i think, though at least one comment suggested a while loop.
foreach($results as $row){
$item['genres'][$row['genre_id']] = $row['genre'];
}
I'll admit i found the wording confusing when i looked at the challenge again.
melk
24,762 PointsThanks, Simon. I used the same $item['genres'][$row['genre_id']] = $row['genre'], but in a while clause.
melk
24,762 PointsThanks, Joel. Now I figured it out.