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

Challenges are losing communication

I am having to restart my challenges many times because the platform keeps losing communication. My internet is not losing connection. I have cleared everything and the problem still persists

flavors.php
<?php

    $flavor1 = "Chocolate";
    $flavor2 = "Vanilla";

?>
<p>Welcome to Ye Olde Ice Cream Shoppe. We sell <?php echo "2"; ?> flavors of ice cream.</p>
<ul>
    <li><?php echo $flavor1; ?></li>
    <li><?php echo $flavor2; ?></li>
</ul>

2 Answers

I'm glad you have it working. They responded and said a fix will be deployed soon. :)

The same thing happened to me during this code challenge. I had to do it over and over (and quickly) to complete it. I sent a message to support to let them know.

They had me go incognito with chrome. Seems to be working so far. I was doing same thing as you.