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

Brenda Krafft
Brenda Krafft
18,036 Points

Why isn't the message in the "else" displaying?

I keep getting an error that says "The array is empty but I don't see a message indicating there are no recommendations."

The code definitely say to display the message in HTML paragraph tags, so that has to be outside the php code. I keep checking my ending symbols but they seem to be alright.

Any ideas?

index.php
<?php

    $recommendations = array();

?><html>
<body>

    <h1>Flavor Recommendations</h1>

  <?php if(!empty($recommendations)) { ?>
    <ul>
        <?php foreach($recommendations as $flavor) { ?>
             <li><?php echo $flavor; ?></li>
        <?php } ?>
    </ul>

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

</body>
</html>

2 Answers

Hi Brenda,

The reason why the Bummer! is happening is because of the single quotes you have surrounding your message. They use quotes to let you know what you should type out, but they shouldn't be on the page itself.

<?php

    $recommendations = array();

?><html>
<body>

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

</body>
</html>
Brenda Krafft
Brenda Krafft
18,036 Points

UH! Of course.

Thank you so much!

Haha you're very welcome, Brenda! Happy Coding :)