PHPを使用してhtmlで条件文を表示する最良の方法は何ですか?しばらくの間、私は以下を使用してきました:
<body>
<?php if ($showDiv): ?>
<div class='row'>
<input type='text' name='input' />
</div>
<?php endif ?>
<?php if ($showDiv): ?>
<div class='row'>
<input type='text' name='input2' />
</div>
<?php endif ?>
</body>