Lets say I have this variables:
$build_1 = 'bricks, stones and other stuff';
$build_2 = 'more bricks, houses and other things';
How can I insert the content of $build_1 and $build_2 in a third variable like $build_total?
After that, I want to insert $build_total inside a mysql database and get 'bricks, stones and other stuff, more bricks, houses and other things'.