使用 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>