Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 8, 2023 02:40
Show Gist options
  • Save parzibyte/c8b0b160c6308d20612e74f4b549b440 to your computer and use it in GitHub Desktop.
Save parzibyte/c8b0b160c6308d20612e74f4b549b440 to your computer and use it in GitHub Desktop.
<?php
$x = 1;
$abierta = false;
$cadaCuantos = 4;
foreach ($datos0 as $dato0) {
if (!$abierta) {
echo '<div class="row" style="padding:10px;">';
$abierta = true;
}
echo '<div class="col-md-3 ">
Aquí más elementos...
</div>';
if ($x % $cadaCuantos == 0) {
echo '</div>';
$abierta = false;
}
$x++;
}
if ($abierta) {
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment