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 Functions Introducing Functions PHP Function Default Arguments

horia
horia
6,082 Points

Is 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
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Yes, 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! :sparkles:

horia
horia
6,082 Points

Thanks, Jennifer. I didn't know that difference between the two types of quotes.