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 Associative Arrays

I got stuck on this task!

I do not know how to display the title keeping the h1 tags

index.php
<?php
$movie= []; 
$movie["title"] = [
  "tittle" =>"The Empire Strikes Back",
  "director" => "Robert Zemeckis",
  "IMDB Rating" => 8.5,
  "IMDB Rankin" => 53,
  "year" => 1985,
 ];
?>
<h1 class="title"><?php echo $movies[0]["title"]; ?></h1>

1 Answer

It looks like you're echoing a different variable name than the one used to create the array. change the variable you're echoing from $movies to $movie. that might be the issue.