以下のコードを確認してください。
<?php
$d=2;
echo "the sum of the number is"."<sub>($d+1)</sub>";
?>
出力として与える:
the sum of the number is <sub>(2+1)</sub>
理想的には、出力を にする必要があります"the sum of the number is <sub>3</sub>"
。HTMLタグを使用しない場合は問題なく動作します<sub>
...
どうすればこれを修正できますか?