Created
May 7, 2014 07:41
-
-
Save rolka/9ed46e3b2ea03f0072fe to your computer and use it in GitHub Desktop.
php: if and html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? 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