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

Echo Year in brackets

I have tried so many different versions of this I am going a little loopy. How do I get this to pass?

<?php 

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

?>

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

And

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

And

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

Remember, one of the things php is for is to generate html.

1 Answer

Hi Sayth,

That is a tough one. Your third try is close. We want to display the year inside of the parenthesis. So the second php statement has to be inside of the parenthesis; displaying the year is all the whole statement does. Here is the correct answer.

Jeff

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

Have to fit the whole php call in the brackets, ok, thanks I was definitely stuck.