Skip to content

Instantly share code, notes, and snippets.

@zspine
Created February 19, 2016 04:55
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zspine/51b1fd8e834b85abb47d to your computer and use it in GitHub Desktop.
Save zspine/51b1fd8e834b85abb47d to your computer and use it in GitHub Desktop.
<div class="row">
<?
$i = 0;
foreach ($cars as $car) {
?>
Your code here
<?
$i++;
if ($i % 3 == 0) {
echo '</div><div class="row">';
}
}
?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment