Created
February 24, 2010 16:29
-
-
Save zackkitzmiller/313581 to your computer and use it in GitHub Desktop.
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
<?php | |
foreach ($somethings as $thing) { | |
$count = 1; | |
if ($count == 4) { | |
echo "<div class='thing'>"; | |
?> | |
LOTS OF HTML CONTENT HERE | |
</div> <!-- close div --> | |
<? | |
$count = 1; | |
} else { | |
echo "<div>"; | |
?> | |
LOTS OF HTML CONTENT HERE | |
</div> <!-- close div --> | |
<? | |
} | |
$count++; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment