I have created a string, now I want to add data to the end of the string -
<p>This is the string</p>
I now want to read from MySql from a field and add the data to the end of the string. Something like -
&Str1 = "This is the first part";
&Str2 = My data from the database table field (Say for instance "Data"
<p>&Str1.$Str2</p> p will also not work in this context, how can I combine the 2 strings and then show it as say print?