Hi,
Say I have a variable, $prefix which is $prefix = "PHPBuilder" ;
how can I put some text after this? like print "$prefix123" ; without it thinking the variable is $prefix123 instead of $prefix
So the result could be: PHPBuilder123
Ben
echo "$variable"."123";
yey! thanks db =D
Or "{$variable}123";