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

it still cant pass

the message bummer has been the order of day please correct me

movie.php
<?php
$movie = array();
$movie["title"] = "The Empire Strikes Back";
?>
<h1><?php $movie=array('title' =>"The Empire Strikes Back",'year' =>
 (1985), 'Director'=> "Robert Zemeckis" ,'IMDB_Rating'=>"8.5",'IMDB_Ranking'
=> "53");?></h1>
   ()

   Director
IMDB Rating
IMDB Ranking

1 Answer

Hi! A couple of things here:

1) I would recommend expanding your array out onto multiple lines so that you can visually check for consistency. For example:

<?php
$movie = array(
  'title' => "The Empire Strikes Back",
  'year' => 1980
);
?>

A simple array value being echoed generally doesn't need to be spread out, but your call to the array keys and their respective values are incorrect. Think back on what you've learned!

<h1><?php echo $movie['title'];?> (<?php echo $movie['year'];?>)</h1>

2) Remember that integers do not need quotation marks! Take a few minutes to spread out your code and check it for accuracy.

You're almost there, so good luck! If my answer helped you complete the challenge, please show your support by voting/marking it as Best Answer. :)