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 Enhancing a Simple PHP Application Adding Search: Controller & View Accounting for Empty Results

Phil Ward
Phil Ward
4,204 Points

Enhancing a PHP application - problem adding values into array

seems a really simply last step, but i can seem to pass. is it not just a case of adding a value to the array at the top of the page, or the other changes need to be made as well?

index.php
<?php

    $recommendations = array();
    $reccomendations[] = "Avocado Chocolate";

?>

<html>
<body>

  <h1>Flavor Recommendations</h1>

  <?php
      if (!empty($recommendations)) {
                echo "<ul>";
                foreach($recommendations as $flavor) {
                echo '<li> $flavor </li>';
               }
                echo "</ul>";
          }     else {
                echo '<p>There are no flavor recommendations for you.</p>' ;
            }

  ?>


</body>
</html>

1 Answer

there's a typo in your recommendations array variable - try that and see if it works!

If not, can you post the question and some background?

<?php

    $recommendations = array();
    $reccomendations[] = "Avocado Chocolate";

should be

<?php

    $recommendations = array();
    $recommendations[] = "Avocado Chocolate";