Skip to content

Instantly share code, notes, and snippets.

@bobmagicii
Last active December 9, 2015 23:09
Show Gist options
  • Save bobmagicii/e72d0b4e63eddd49d5eb to your computer and use it in GitHub Desktop.
Save bobmagicii/e72d0b4e63eddd49d5eb to your computer and use it in GitHub Desktop.
<div>
<?php if($Shits): ?>
<ul>
<?php foreach($Shits as $Shit): ?>
<li><?php echo $Shit ?></li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<div>Aint No Shit</div>
<?php endif; ?>
</div>
<div>
<?php if($Shits) { ?>
<ul>
<?php foreach($Shits as $Shit) { ?>
<li><?php echo $Shit ?></li>
<?php } ?>
</ul>
<?php } else { ?>
<div>Aint No Shit</div>
<?php } ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment