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 trialAdam Siwiec
12,070 PointsI don't know my mistake, maybe the challenge is wrong.
Here is my code for task 3 of the challenge:
<?php $name = "Mike"; if ($name === "Mike") { echo "Hi, I am Mike"; } ?>
It keeps telling me to copy the exact string above, and its exactly the same. I don't know whats wrong!
<?php
$name = "Mike";
if ($name === "Mike") {
echo "Hi, I am Mike";
}
?>
2 Answers
Ryan Field
Courses Plus Student 21,242 PointsHi, Adam. You are missing the exclamation mark inside of the sentence. Adding this will allow you to pass the challenge. In programming, you need to be very careful and precise when inputting code, as the smallest of mistakes or omissions can create huge headaches later on.
Adam Siwiec
12,070 PointsJust realized that Thanks a bunch!