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

Digital Literacy Computer Basics Computer Languages Programming Paradigms - Part 3

Paul Ramirez
Paul Ramirez
351 Points

I Keep getting a communication Error on Challenge Task 1 on 1 with Computer Basics on the PHP Echo example.

I am getting a error communication error and i don't know if it is an error on the front or back side of the training

example.php
<?php 
echo 'My Name is Paul Ramirez'; ?>

1 Answer

Steven Parker
Steven Parker
229,783 Points

The challenge asks you to: "Write the phrase 'Hello YOUR NAME' in the appropriate place in this PHP code."

:point_right: Your phrase starts with "My Name is...", not "Hello".

Also, did you notice the response given when you entered the above line and pressed "Check Work"? It was:

The string you pass to 'echo' needs to begin with 'Hello', like this: <?php echo "Hello YOUR NAME HERE"; ?>