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 Simple PHP Application Listing Inventory Items Associative Arrays

Rafael Peralta Jr
Rafael Peralta Jr
21,879 Points

Associative Array Challenge

I am having an issue with task 3 of the code challenge. I thought it was correct but I don't know what the problem is. Can someone please clarify. Here is the code below:

<?php 

$movie = array(
  "title" => "The Empire Strikes Back"
);

?>
<h1><?php echo $movie["title"] ?>(1985) </h1>

4 Answers

Mike Costa
PLUS
Mike Costa
Courses Plus Student 26,362 Points

The code is correct but it seems like the formatting of the code you have is wrong for letting the task pass. Try removing the space between (1985) and the h1 tag.
(edit: I didnt see the greyed out php before the php tags. oops) :/

take a close look at your php tags ;)

Rafael Peralta Jr
Rafael Peralta Jr
21,879 Points

Ah! Thank you. Such a simple mistake :)

Rafael Peralta Jr
Rafael Peralta Jr
21,879 Points

Thanks! It passed after inserting a space.