x
 
<!DOCTYPE html>
<html>
<body>
<?php
$color = "red";
print "Roses are $color";
print "<br>";
print 'Roses are $color';
?>
</body>
</html>