您可以使用打开/关闭括号这样做{}
<?php
if ( 1==2) {
?>
<textarea>
"Add multiple lines of text here and watch the scrollbars grow.">
</textarea>
<?php } ?>
一般来说,您需要将所有
if else
语句使用php标记和外部的html。您也可以使用echo。
<小时>
<?php if ( condition ) { ?>
<!-- your html goes here -->
<?php } else { ?>
<!-- another html goes here -->
<?php } ?>
使用echo的示例(使用ony-one-php标记打开/关闭块)
<?php if ( condition ) {
echo "<p>Some text content</p>";
} else {
echo "<p>Another text content</p>";
} ?>