Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

horia
6,082 PointsIs it correct to put variable between commas when echoing?
so, in this video (and some of the previous ones) I see statements like this:
echo "hello, $name";
is this correct? shouldn't it be more like this:
echo "hello, " . $name;
1 Answer

Jennifer Nordell
Treehouse TeacherYes, it is correct. The double quotes tells php to expand the variable (put the value of the variable) inside the string. If we want that to not happen, we'd use single quotes around the string. Hope this helps!
horia
6,082 Pointshoria
6,082 PointsThanks, Jennifer. I didn't know that difference between the two types of quotes.