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 More Excitement With Arrays

I don't understand the question...

What is being ask on the challenge 5/7 stage 4 Build A Simple PHP Application.

  • the question is long-winded

2 Answers

Tawny Bartlett
Tawny Bartlett
24,674 Points
<ul><?php foreach($flavors as $flavor) { ?>
    <li><?php echo $flavor1; ?></li>
    <li><?php echo $flavor2; ?></li>
  <?php } ?>
</ul>

I think the confusion lies in it trying to explain where exactly to put the code "after the ul but before the li" etc.

Thanks Tawny!

I get confused with the PHP tags within HTML — not sure if I fully understand why first line of the PHP closing tag is straight after the opening { ??? —I just find it odd that it's possible and not really getting the logic of that particular bit of PHP.

Thanks again for your help,

Philip

Tawny Bartlett
Tawny Bartlett
24,674 Points

Hi Philip! :)

Yeah, it's a fairly new concept for me too! You just need to remember that any HTML you put needs to be outside of the PHP tags as the HTML doesn't need to be parsed.

The top bit of http://php.net/manual/en/language.basic-syntax.phpmode.php might help get your head around it! :)