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 PHP Basics (Retired) PHP Data & Structure PHP Variables

echo to screen

what am I doing wrong?

index.php
<?php

$name = "mike" ;

echo $name ;

?>

3 Answers

Hi, 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".

You have a space between your variable and your semi-colon. I think that could be the problem?

<?php

$name = "mike";

echo $name;

?>

Thanks 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.