Skip to content

Instantly share code, notes, and snippets.

@rolka
Created May 7, 2014 07:41
Show Gist options
  • Save rolka/9ed46e3b2ea03f0072fe to your computer and use it in GitHub Desktop.
Save rolka/9ed46e3b2ea03f0072fe to your computer and use it in GitHub Desktop.
php: if and html
<? if ($condition): ?>
<p>Content</p>
<? elseif ($other_condition): ?>
<p>Other Content</p>
<? else: ?>
<p>Default Content</p>
<? endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment