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 trialJohn Deininger
3,958 Pointsecho to screen
what am I doing wrong?
<?php
$name = "mike" ;
echo $name ;
?>
3 Answers
geoffrey
28,736 PointsHi, it doesn't probably work because the challenge asks you to store in the variable $name, the string "Mike" and not "mike" as you typed.
I just tested it, and It passed with "Mike".
Laurie Williams
10,174 PointsYou have a space between your variable and your semi-colon. I think that could be the problem?
<?php
$name = "mike";
echo $name;
?>
John Deininger
3,958 PointsThanks guys, I tend to get going too fast and miss the little stuff and as I am learning one miscapitalized word and things start going off course.