Possible Duplicate:
Which is the best method to perform string concatination in PHP?
I tried to add a variable and string to another variable like this:
finalData += $ajaxData + 'some text';
To no avail. The result is nothing. Any advice? Thanks
EDIT: I made a major mistake! I forgot I was working with Jquery! It was a long day guys sorry! 🙂
Mods please delete question.
string concatenation in php is done with a
.so you need to do: