0
<?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 つの行にあり、別の行にする方法がわかりません。

4

1 に答える 1

2

各 PHP ステートメントの後に HTML Break 行タグを使用してください。お気に入り

$txt="Hello, my name is Max Koenig. <br />"; $intro="I was Born and raised in Calgary, Alberta with my Mother, Father and Sister. <br />";
于 2013-03-16T21:58:26.050 に答える