Hi
I am trying to join 2 sentences together using php and mysql. How can i do so?
I am doing this as i need to add an update of a new remarks to the existing remarks.
For example,
$first = 'Hello';
$second = 'world';
To get the string 'Hello world', can i actually simply just add $first and $second ie:
$final = $first + $second ;
Thanks