1 2 3 4 5 6 7 | <? if ($condition): ?> <p>Content</p> <? elseif ($other_condition): ?> <p>Other Content</p> <? else: ?> <p>Default Content</p> <? endif; ?> |
Snippets
Now With More Bass
Now With More Bass
1 2 3 4 5 6 7 | <? if ($condition): ?> <p>Content</p> <? elseif ($other_condition): ?> <p>Other Content</p> <? else: ?> <p>Default Content</p> <? endif; ?> |