Hi!
if, for example, i've got these two variable :
var1 = "hello ";
var2 = "everyone";
what i need to do is to add var2 to var1, so the output will look like this :
var1 = var1 & var2;
output
hello everyone
I guess that my problem is the "&"
need help
Turb