Snippets

Now With More Bass

PHP If Then

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; ?>