these are two variables with two different values.
$variableone = 'This';
$variabletwo = 'Place';
How do I add variable to to variable one like this with a empty space between "This" and "Place":
$variableone = 'This Place';
and how do i update variable two to have no value like this
$variabletwo = " ";
I would apperciate a answer thanks