<!DOCTYPE html>
<html>
<body>

<?php
$color = "red";
echo "Roses are $color";
echo "<br>";
echo 'Roses are $color';
?>


</body>
</html>