Advertisement
ali_siddique

If else embedding inside html

May 6th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <? if ($condition): ?>
  2. <p>Content</p>
  3. <? elseif ($other_condition): ?>
  4. <p>Other Content</p>
  5. <? else: ?>
  6. <p>Default Content</p>
  7. <? endif; ?>
  8.  
  9.  
  10.  
  11.  
  12. <?php if ($foo) { ?>
  13. <div class="mydiv">Condition is true</div>
  14. <?php } else { ?>
  15. <div class="myotherdiv">Condition is false</div>
  16. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement