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 trialChad Strege
11,823 PointsError message
I get this error message when going through the code challenge
"Bummer! It looks like the title of the second movie is in the <h1>, but something else isn't quite right. Double-check the parentheses and the year"
I ran my code on my machine I have no errors and the parentheses and the year show up. The preview button shows nothing. here is my code <?php $movie = array(); $movie["title"] = "The Empire Strikes Back";?> <h1><?php echo($movie["title"]); ?>(1985)</h1>
<table> <tr> <th>Director</th> <td>Robert Zemeckis</td> </tr> <tr> <th>IMDB Rating</th> <td>8.5</td> </tr> <tr> <th>IMDB Ranking</th> <td>53</td> </tr> </table>
my output
The Empire Strikes Back(1985) Director Robert Zemeckis IMDB Rating 8.5 IMDB Ranking 53 any ideas??
3 Answers
. Ali
9,799 Pointsyou just need to give a space between the date and title thats it .. i know its funny but thats the only thing
Chad Strege
11,823 PointsThank you I thought I did that but it now works.
. Ali
9,799 Pointsyou welcome :)