我'我有麻烦把PHP代码多行


I'm having trouble with putting PHP code on more than one line

<?php
$txt="Hello, my name is Max Koenig.";
$intro="I was Born and raised in Calgary, Alberta with my Mother, Father and Sister.";
echo $txt . " ". $intro;
echo strlen ("Hello, my name is Max Koenig.");

$t=date("H");
if ($t>"10")
    echo "Good Morning";
elseif ($t>"16")
    echo "Good afternoon";
elseif ($t>"19")
    echo "Goodnight"
?>

所有这些都在一条横贯整个页面的线条上我不知道如何让它们在不同的线条上

请在每个PHP语句后使用HTML分隔行标记。像

$txt="Hello, my name is Max Koenig. <br />"; $intro="I was Born and raised in Calgary, Alberta with my Mother, Father and Sister. <br />";