$value = "My Value";
$value2 = 5;
$string = "The value is {$value} and the second is {$value2}";
<?php
$apples = 5;
$bananas = 3;
echo "There are $apples apples and $bananas bananas.";
echo "
";
echo "I have {$apples} apples and {$bananas} bananas.";