Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public static function mostrar_entradas_busqueda($entradas) {
  2. $count = count($entradas);
  3. for ($i = 1; $i <= $count; $i++) {
  4. if ($i % 3 == 0) {
  5. ?>
  6. <div class="row">
  7. <?php
  8. }
  9. $entradas = $entradas[$i - 1];
  10. self::mostrar_entrada_busqueda($entradas);
  11.  
  12. if ($i % 3 == 0) {
  13. ?>
  14. </div>
  15. <?php
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement