x
 
<!DOCTYPE html>
<html>
<body>
<?php
$str1="Hello world!";
$str2="I love Shanghai!";
echo $str1 . " " . $str2;
?>  
</body>
</html>