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 trialgyatmnucla
7,618 Points+= 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
Christian Andersson
8,712 PointsJudging 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.
gyatmnucla
7,618 Pointsgyatmnucla
7,618 PointsGot it now, Thanks !