<? if($id == 2) { ?> html goes here <? } else { ?> if id is not 2 then something goes here <? } ?>
你可以使用
PHP’s alternative syntax for control structures:
原文链接:https://www.f2er.com/php/137245.html<? if ($id == 2): ?> <h2>some html</h2> <? else: ?> <h2>another html chunk</h2> <? endif ?>
请注意,short_open_tags是一个需要显式启用的PHP.ini指令,否则每次都必须写<?PHP.