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 trialScott Dredge
2,110 PointsArray item not displaying when code looks normal.
Code looks normal, should be displaying, though saying an array item can not be seen.
<?php
$movie = [
"title" => "The Empire Strikes Back",
"year" => "1980",
"director" => "Irvin Kershner",
"imdb_rating" => "8.8",
"imdb_ranking" => "11"
];
?>
<h1><?php echo $movie["title"]." ". $movie["year"]; ?></h1>
<table>
<tr>
<th>Director</th>
<td><?php $movie["director"]; ?></td>
</tr>
<tr>
<th>IMDB Rating</th>
<td><?php $movie["imdb_rating"]; ?></td>
</tr>
<tr>
<th>IMDB Ranking</th>
<td><?php $movie["imdb_ranking"]; ?></td>
</tr>
</table>
2 Answers
aziztovbaev
23,252 Points- There are two options of array declaration in PHP 1. array() and 2. [], it may not be the problem in your case.
- Array values can be of different types in PHP, so you can go ahead and put "imdb_rating" => 8.8(float) and "imdb_ranking => 11(integer) , I think you get it :)
- Did you forget to replace <th> tag words??? <?php echo $movie[2]; ?> <?php echo $movie[3]; ?> <?php echo $movie[4]; ?>. Automatic indexing of the associative array keys. Also you could manipulate the string contents using some string built-in functions. See php.net.
Daniel Jenkins
17,714 PointsYou're missing echo statements in the table cells, otherwise worked fine.
Scott Dredge
2,110 PointsWell that would explain it, so simple, it was late and coding in the dark is not good your you. Thanks you for pointing out the obvious guys, its appreciated. lol.
Scott Dredge
2,110 PointsScott Dredge
2,110 PointsThank you!