Forum Moderators: coopster
Any help will be very much appreciated.
Thanks
/* Assigning a string. */ $str = "This is a string";
/* Appending to it. */ $str = $str . " with some more text";
/* Another way to append */ $str .= " with more text added in a different way";
Thanks for taking the time to help me. Much appreciated