Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Vane Charles
Courses Plus Student 18,605 PointsI got stuck on this task!
I do not know how to display the title keeping the h1 tags
<?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

Jacob Mishkin
23,103 PointsIt 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.