Forum Moderators: coopster
So if I have:
$message = 'lots of text here etc etc etc';
Then later I want to add on so I've tried:
$message .= 'more text here';
as well as:
$message = $message . 'more here';
and neither work. How can I do this correctly? THanks in advance