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 One Solution

Piotr Manczak
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Piotr Manczak
Front End Web Development Techdegree Graduate 28,940 Points

While displaying a message Alina used: echo $message; . Why not: echo "$message"; ?

While displaying a message Alina used: echo $message;
. Why not: echo "$message";
? Should not we use "" for when using 'echo' command?

6 Answers

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,341 Points

Hi Piotr Manczak. The answer is it will work with the Quotes but its not necessary if you are only displaying the argument. If you wanted to display text with you argument then you need quotes. For example if you wanted to display - This is my message - $message . Then you would need to do:

echo "This is my message - $message";

but if you just want to show $message then either

echo $message;

or

echo "$message";

will work Heres a link that might help