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 trialNigel Concepcion
3,889 PointsWhy is this procedure wrong?
It keeps stating to use the statement from above which is 'Hi, I am Mike!'. Yet, it keeps saying I am wrong. Help please.
<?php
$name = 'Mike';
if($name){
$name == 'Hi, I am Mike!';
}
echo $name;
?>
2 Answers
jason chan
31,009 Points$name = 'Mike';
if( $name == 'Mike'){
echo 'Hi, I am Mike!';
}
var name = "mike'; if name equal mike true then print Hi i am mike.
I hope that helps man. I'm just javascripty. LOLs
Niclas Valentiner
8,947 PointsJason gave a solution but to clarify a bit: You're comparing "Mike" to "Hi, I am Mike!" then echoing the variable, in this case "Mike".