<?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"
?>
これらはすべて、ページ全体にまたがる 1 つの行にあり、別の行にする方法がわかりません。