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 Build a Simple PHP Application Adding a Contact Form Working with Concatenation and Whitespace

+= in php

Hello!

http://www.w3schools.com/php/php_operators.asp According to this, I am supposed to be able to use += instead of $email_body = $email_body . '' but it doesn't work...

1 Answer

Judging by the name of your variable: $email_body, I assume it's a String variable. You cannot do += on Strings because that's used for addition (of integers for example).

What you're looking for is .= which is for concatenating strings.

Got it now, Thanks !