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 trialRafael Peralta Jr
21,879 PointsAssociative 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
Courses Plus Student 26,362 PointsThe 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) :/
thomascawthorn
22,986 Pointstake a close look at your php tags ;)
Rafael Peralta Jr
21,879 PointsAh! Thank you. Such a simple mistake :)
Rafael Peralta Jr
21,879 PointsThanks! It passed after inserting a space.