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 Refactoring the Codebase Separating Concerns: Views

Placid Rodrigues
Placid Rodrigues
12,630 Points

In the video, The list (li) tags are removed from function. How are the generated in browser?

In the original function get_list_html_view() there were <li> and </li> tags, which are removed in the new function get_products_recent() and these tags are also not created in the index.php. But I noticed that these tags are showing in the browser. I have checked in multiple browsers and viewed source. How are these tags generated?

Placid Rodrigues
Placid Rodrigues
12,630 Points

Sorry for the Typo in subject line. It will be: In the video, The list (li) tags are removed from function. How are they generated in browser?

1 Answer

Is the html not inside the function get_list_view_html ?

Placid Rodrigues
Placid Rodrigues
12,630 Points

Oh yes! I missed it. Thanks Tom.