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