※ ChatGPTを利用し、要約された質問です(原文:phpの文字列表示)
phpの文字列表示
このQ&Aのポイント
phpでランダムな数字を表示するプログラム
70以上が出ると表示が崩れる問題の解決方法
正常に表示する方法を教えてください
phpで質問です。
ランダムな数字、1~100の間で70以上が出れば表示を変える というプログラムをしたのですが、
70以上が出るとなぜか表示が崩れます。
正常に表示する方法を教えてください。
コード
$rand = mt_rand(1,100);
echo $rand;
if($rand<70)
{
echo '<ul>
<a href="#"><li>A</li></a>
<a href="#"><li>B</li></a>
<a href="#"><li>C</li></a>
<a href="index.php"><li>D</li></a>
</ul>';
}
else {
echo '<ul><a href="example_sub4.php" target="_brank"><li>close</li></a>
<a href="#"><li>E</li></a>
<a href="#><li>F</li></a>
<a href="index.php"><li>G</li></a>';
}
?>
お礼
ありがとうございます。