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

Anish Babu
Anish Babu
8,044 Points

Showing error "The array is empty, but I don't see the message indicating that no flavors are found."

<?php

$recommendations = array();

?><html> <body>

<h1>Flavor Recommendations</h1>
 <?php 
     if(!empty($recommendations)){ 
        echo '<ul>'; 
      foreach($recommendations as $flavor) { ?>

        <li><?php echo $flavor; ?> </li>         

   <?php   } ?>

<?php echo '</ul>'; ?> <?php } else { ?> <?php echo '<p>There are no flavor recommendations for you <p>' ; ?>

   <?php  }?>

</body> </html>

1 Answer

Hi Anish,

Your code block is broken up so some of your html has been stripped out and it's hard to tell what you have.

For the output statement, you want to make sure that it's wrapped in <p> tags and that you have a period at the end of the sentence.

<p>There are no flavor recommendations for you.</p>